mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-02 19:57:45 +08:00
8a0baab60b
* feat: support for import via absolute path * update code * update code * update code
38 lines
606 B
JSON
38 lines
606 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"target": "es5",
|
|
"types": [
|
|
"node"
|
|
],
|
|
"lib": [
|
|
"es2017",
|
|
"es2016",
|
|
"es2015",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"eo/*": [
|
|
"./src/*"
|
|
]
|
|
}
|
|
},
|
|
"include": [
|
|
"**/**.ts",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts",
|
|
"**/browser/**/*.ts"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"enableIvy": true
|
|
}
|
|
}
|