SDServer/tsconfig.json
2024-08-30 15:37:33 +08:00

23 lines
677 B
JSON

{
"compilerOptions": {
"target": "es2015", // 编译为 ES2015
"module": "commonjs", // 使用 CommonJS 模块系统
"moduleResolution": "node",
"sourceMap": true,
"strict": false, // 启用严格模式
"esModuleInterop": true, // 启用 ES 模块的兼容性
"skipLibCheck": true, // 跳过库的类型检查
"forceConsistentCasingInFileNames": true,
// "baseUrl": ".",
// "paths": {
// "@/*": ["src/*"]
// },
"outDir": "./dist",
"rootDir": "./src",
},
"include": [
"src/**/*.ts"
],
"exclude": ["node_modules", "dist", "release"]
}