LaiTool_PRO/tsconfig.json

25 lines
769 B
JSON
Raw Normal View History

2025-08-19 14:33:59 +08:00
{
"files": [],
"references": [{ "path": "./tsconfig.node.json" }, { "path": "./tsconfig.web.json" }],
"compilerOptions": {
"module": "commonjs",
"strict": false,
"esModuleInterop": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist", // 输出目录
"sourceMap": true, // 生成源码映射
"declaration": true, // 生成声明文件
"allowJs": true, // 允许编译 JS 文件
"target": "es2021", // 你可以设置目标版本,
"baseUrl": ".", // 设置模块解析的根目录为项目根目录
"paths": {
"@/*": ["src/*"] // 使用 @ 作为 src 目录的别名
}
},
"include": [
"src/**/*"
]
}