postcat/tsconfig.json

23 lines
565 B
JSON
Raw Normal View History

2022-01-17 14:50:31 +08:00
{
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
2022-04-17 09:39:20 +08:00
"module": "commonjs",
2022-01-17 14:50:31 +08:00
"target": "es5",
2022-04-17 09:39:20 +08:00
"types": ["node"],
2022-04-17 10:37:31 +08:00
"lib": ["es2017", "es2016", "es2015", "dom"],
"baseUrl": "./",
"paths": {
2022-04-18 23:15:02 +08:00
"@utils/*": ["src/core/api-manager/browser/src/app/utils/*"]
2022-04-17 10:37:31 +08:00
}
2022-01-17 14:50:31 +08:00
},
2022-04-17 09:39:20 +08:00
"include": ["**/**.ts"],
"exclude": ["node_modules", "**/*.spec.ts", "**/browser/**/*.ts"],
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
}
}