policeSecurity/policeManagement/tsconfig.node.json

47 lines
1.8 KiB
JSON

{
"compilerOptions": {
"composite": true, // 标记为复合项目的一部分 [ty-reference](1)
"target": "ES2022", // 设置目标 JavaScript 语言标准版本
"lib": [ // 指定要包含的类型库
"ES2023" // 包含 ES2023 的类型定义
],
"module": "ESNext", // 设置模块系统
"skipLibCheck": true, // 忽略类型库的类型检查
/* Bundler mode */
"moduleResolution": "bundler", // 设置模块解析策略为 bundler 模式
"allowImportingTsExtensions": true, // 允许导入 TypeScript 扩展名
"isolatedModules": true, // 将每个文件视为一个模块
"moduleDetection": "force", // 强制将所有模块视为 ESM
"noEmit": false, // 允许发出文件
"declaration": true, // 如果需要生成 .d.ts 文件
"emitDeclarationOnly": true, // 只发出声明文件,而不生成 JS 文件
"strict": true, // 开启所有严格类型检查选项
"noUnusedLocals": true, // 报告未使用的局部变量
"noUnusedParameters": true, // 报告未使用的参数
"noFallthroughCasesInSwitch": true // 报告 switch 语句中的 fallthrough 错误
},
"include": [ // 指定包含的文件
"vite.config.ts" // 包括 Vite 配置文件
]
}
// 脚手架自带 配置:
// {
// "compilerOptions": {
// "target": "ES2022",
// "lib": ["ES2023"],
// "module": "ESNext",
// "skipLibCheck": true,
// /* Bundler mode */
// "moduleResolution": "bundler",
// "allowImportingTsExtensions": true,
// "isolatedModules": true,
// "moduleDetection": "force",
// "noEmit": true,
// /* Linting */
// "strict": true,
// "noUnusedLocals": true,
// "noUnusedParameters": true,
// "noFallthroughCasesInSwitch": true
// },
// "include": ["vite.config.ts"]
// }