2023-03-08 19:48:39 -08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": true,
|
2023-06-25 05:13:15 -07:00
|
|
|
"target": "ES2022",
|
2023-03-08 19:48:39 -08:00
|
|
|
"module": "es2020",
|
2023-06-25 05:13:15 -07:00
|
|
|
"moduleResolution": "node16",
|
2023-03-08 19:48:39 -08:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["../src/*"]
|
|
|
|
},
|
|
|
|
"typeRoots": [
|
2023-06-25 05:13:15 -07:00
|
|
|
"../node_modules/@types"
|
2023-03-08 19:48:39 -08:00
|
|
|
],
|
|
|
|
"lib": [
|
|
|
|
"esnext",
|
|
|
|
"dom"
|
|
|
|
],
|
|
|
|
"types": ["node"]
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
|
|
|
"./**/*.ts",
|
2023-06-25 05:13:15 -07:00
|
|
|
"../src/**/*.vue"
|
2023-03-08 19:48:39 -08:00
|
|
|
]
|
|
|
|
}
|