2023-07-07 19:22:30 +00:00
|
|
|
{
|
2024-04-08 01:10:23 +00:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"noEmitOnError": false,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"target": "es2017",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"removeComments": false,
|
|
|
|
"noLib": false,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
},
|
|
|
|
"typeRoots": ["node_modules/@types", "@types"],
|
|
|
|
"lib": ["esnext", "webworker"]
|
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"allowImportingTsExtensions": true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"compileOnSave": false,
|
|
|
|
"include": [
|
|
|
|
"./**/*.ts",
|
|
|
|
"./**/*.d.ts",
|
|
|
|
"./**/*.tsx",
|
|
|
|
"./**/*.vue",
|
|
|
|
"webpack.config.ts"
|
|
|
|
]
|
2023-07-07 19:22:30 +00:00
|
|
|
}
|