2017-01-02 14:38:12 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2017-03-30 13:53:14 +03:00
|
|
|
"baseUrl": ".",
|
|
|
|
"declaration": true,
|
|
|
|
"stripInternal": true,
|
2017-01-02 14:38:12 +03:00
|
|
|
"experimentalDecorators": true,
|
2017-03-30 13:53:14 +03:00
|
|
|
"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/*"]
|
2017-03-30 13:53:14 +03:00
|
|
|
},
|
|
|
|
"rootDir": ".",
|
|
|
|
"outDir": "dist",
|
2017-01-02 14:38:12 +03:00
|
|
|
"sourceMap": true,
|
2017-03-30 13:53:14 +03:00
|
|
|
"inlineSources": true,
|
|
|
|
"target": "es5",
|
2018-05-08 11:46:01 +03:00
|
|
|
"skipLibCheck": false,
|
2017-03-30 13:53:14 +03:00
|
|
|
"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": [
|
2017-03-30 13:53:14 +03:00
|
|
|
"index.ts",
|
|
|
|
"./node_modules/abp-web-resources/Abp/Framework/scripts/abp.d.ts"
|
2017-01-02 14:38:12 +03:00
|
|
|
],
|
2017-03-30 13:53:14 +03:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
"strictMetadataEmit": true
|
|
|
|
}
|
|
|
|
}
|