SDServer/tsconfig.json

25 lines
709 B
JSON
Raw Normal View History

2024-08-24 15:29:04 +00:00
{
"compilerOptions": {
2024-08-26 08:44:51 +00:00
"module": "commonjs", // 使用 CommonJS 模块系统
"target": "es2015", // 编译为 ES2015
"moduleResolution": "node",
2024-08-24 15:29:04 +00:00
"sourceMap": true,
"strict": false, // 启用严格模式
"esModuleInterop": true, // 启用 ES 模块的兼容性
"skipLibCheck": true, // 跳过库的类型检查
"forceConsistentCasingInFileNames": true,
2024-08-26 08:44:51 +00:00
"baseUrl": ".",
2024-08-24 15:29:04 +00:00
"paths": {
2024-08-26 08:44:51 +00:00
"@/*": ["src/*"]
2024-08-24 15:29:04 +00:00
},
"outDir": "./dist",
"rootDir": "./src",
},
2024-08-26 08:44:51 +00:00
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules" // 排除 node_modules 目录
]
2024-08-24 15:29:04 +00:00
}