abp-ng2-module/tsconfig.json

36 строки
753 B
JSON
Исходник Обычный вид История

2017-01-02 14:38:12 +03:00
{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"stripInternal": true,
2017-01-02 14:38:12 +03:00
"experimentalDecorators": true,
"strictNullChecks": true,
"noImplicitAny": true,
"module": "es2015",
"moduleResolution": "node",
"paths": {
2018-02-22 04:22:29 +03:00
"@angular/core": ["node_modules/@angular/core"],
"@abp/*": ["src/*"]
},
"rootDir": ".",
"outDir": "dist",
2017-01-02 14:38:12 +03:00
"sourceMap": true,
"inlineSources": true,
"target": "es5",
2018-05-08 11:46:01 +03:00
"skipLibCheck": false,
"lib": [
"es2015",
"dom"
]
2017-01-02 14:38:12 +03:00
},
2018-05-08 11:46:01 +03:00
"include": [
"./index.ts"
],
2017-01-02 14:38:12 +03:00
"files": [
"index.ts",
"./node_modules/abp-web-resources/Abp/Framework/scripts/abp.d.ts"
2017-01-02 14:38:12 +03:00
],
"angularCompilerOptions": {
"strictMetadataEmit": true
}
}