20 lines
567 B
JSON
20 lines
567 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020", // 设置 ECMAScript 版本
|
||
|
"module": "CommonJS", // 使用 CommonJS 模块系统
|
||
|
"sourceMap": true,
|
||
|
"strict": false, // 启用严格模式
|
||
|
"esModuleInterop": true, // 启用 ES 模块的兼容性
|
||
|
"skipLibCheck": true, // 跳过库的类型检查
|
||
|
"forceConsistentCasingInFileNames": true,
|
||
|
"paths": {
|
||
|
"@/*": [
|
||
|
"./src/*"
|
||
|
]
|
||
|
},
|
||
|
"outDir": "./dist",
|
||
|
"rootDir": "./src",
|
||
|
},
|
||
|
"include": ["src/**/*"] // 包含 src 目录下的所有文件
|
||
|
}
|
||
|
|