SDServer/tsconfig.json

23 lines
666 B
JSON
Raw Normal View History

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