postcat/tsconfig.json

34 lines
1.1 KiB
JSON
Raw Normal View History

2022-01-17 14:50:31 +08:00
{
"$schema": "https://json.schemastore.org/tsconfig",
2022-01-17 14:50:31 +08:00
"compilerOptions": {
"incremental": true, // TS编译器在第一次编译之后会生成一个存储编译信息的文件第二次编译会在第一次的基础上进行增量编译可以提高编译的速度
"tsBuildInfoFile": "./buildFile", // 增量编译文件的存储位置
2022-06-06 01:51:08 +08:00
"allowJs": true,
"checkJs": false,
2022-01-17 14:50:31 +08:00
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
2022-08-23 22:08:23 +08:00
"emitDecoratorMetadata": false,
2022-06-06 01:51:08 +08:00
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
2022-01-17 14:50:31 +08:00
"experimentalDecorators": true,
"resolveJsonModule": true,
2022-06-06 01:51:08 +08:00
"skipLibCheck": true,
2022-04-17 09:39:20 +08:00
"module": "commonjs",
"outDir": "./out",
2022-06-06 01:51:08 +08:00
"rootDir": "./src",
"target": "es6",
"types": ["node"],
"lib": ["ESNext", "dom"],
"baseUrl": ".",
"paths": {
"eo/*": ["./src/*"]
}
2022-01-17 14:50:31 +08:00
},
"include": ["**/*.d.ts", "./src/**/**.ts", "./src/**/**.js", "scripts/build.js"],
"exclude": ["node_modules", "**/*.spec.ts", "**/browser/**/*.js", "**/browser/**/*.ts", "out"],
2022-01-17 14:50:31 +08:00
"angularCompilerOptions": {
2022-04-17 09:39:20 +08:00
"enableIvy": true
2022-01-17 14:50:31 +08:00
}
}