1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "baseUrl": "./",
- "rootDir": "./src",
- "outDir": "./dist",
- "paths": {
- "@/*": ["src/*"]
- },
- "module": "commonjs",
- "removeComments": true,
- "emitDecoratorMetadata": true,
- "experimentalDecorators": true,
- "allowSyntheticDefaultImports": true,
- "target": "esnext",
- "sourceMap": false, //生成suorceMap
- "declaration": false, //生成声明文件
- "incremental": true, //增量编译,生成tsbuildinfo,加快第二次编译速度
- "esModuleInterop": true
- }
- }
|