Files
flagnote-web/jsconfig.json
2022-11-29 09:46:13 +08:00

25 lines
383 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"baseUrl": "./",
"jsx": "preserve",
"moduleResolution": "node",
"paths": {
"@/*": [
"src/*"
]
},
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
"removeComments": true,
},
"vueCompilerOptions": {
"target": 2.7
}
}