40 lines
744 B
JSON
40 lines
744 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"noEmitOnError": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"noUnusedParameters": false,
|
|
"noUnusedLocals": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"declaration": false,
|
|
"sourceMap": false,
|
|
"target": "es2017",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"removeComments": false,
|
|
"noLib": false,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
},
|
|
"typeRoots": [
|
|
"node_modules/@types",
|
|
"@types",
|
|
],
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"webworker"
|
|
]
|
|
},
|
|
"compileOnSave": false,
|
|
"include": [
|
|
"./**/*.ts",
|
|
"./**/*.vue"
|
|
]
|
|
}
|