25 lines
696 B
JSON
25 lines
696 B
JSON
{
|
|
"compileOnSave": true,
|
|
"compilerOptions": {
|
|
"target": "es2019",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"inlineSourceMap": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"stripInternal": true,
|
|
"skipLibCheck": true,
|
|
"pretty": true,
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"typeRoots": ["./typings", "./node_modules/@types"],
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"inlineSources": true // ✅ 把源码嵌入 map 文件,方便 VS Code 还原
|
|
|
|
},
|
|
"exclude": ["*.js", "*.ts", "dist", "node_modules", "test"]
|
|
}
|