policeSecurity/securityManagement/tsconfig.node.json

25 lines
498 B
JSON
Raw Normal View History

2024-08-29 17:06:00 +08:00
{
"compilerOptions": {
"target": "ES2022",
"lib": [
"ES2023"
],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
2024-08-30 18:01:34 +08:00
"strict": false,
2024-08-29 17:06:00 +08:00
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": [
"vite.config.ts"
]
}