policeSecurity/collect_information/tsconfig.json

36 lines
715 B
JSON
Raw Normal View History

2024-09-10 11:00:20 +08:00
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"removeComments": false,
"preserveConstEnums": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"noImplicitAny": false,
"allowSyntheticDefaultImports": true,
"outDir": "lib",
"noUnusedLocals": false,
"noUnusedParameters": false,
2024-09-14 14:48:51 +08:00
"strictNullChecks": false,
2024-09-10 11:00:20 +08:00
"sourceMap": true,
"rootDir": ".",
"jsx": "preserve",
"allowJs": true,
"resolveJsonModule": true,
2024-09-14 14:48:51 +08:00
"typeRoots": [
"node_modules/@types"
],
2024-09-10 11:00:20 +08:00
"paths": {
2024-09-14 14:48:51 +08:00
"@/*": [
"src/*"
]
2024-09-10 11:00:20 +08:00
}
},
2024-09-14 14:48:51 +08:00
"include": [
"./src",
"./types",
"./config"
],
2024-09-10 11:00:20 +08:00
"compileOnSave": false
}