2016-03-07 14:48:46 +01:00
|
|
|
{
|
2017-12-11 17:36:46 +01:00
|
|
|
"compileOnSave": false,
|
2016-03-07 14:48:46 +01:00
|
|
|
"compilerOptions": {
|
2019-07-24 16:05:59 +02:00
|
|
|
"downlevelIteration": true,
|
2017-12-11 17:36:46 +01:00
|
|
|
"outDir": "./dist/out-tsc",
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": false,
|
2016-03-07 14:48:46 +01:00
|
|
|
"moduleResolution": "node",
|
2019-01-24 13:43:44 +01:00
|
|
|
"module": "esnext",
|
2016-03-07 14:48:46 +01:00
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
2018-10-18 09:08:59 +02:00
|
|
|
"noImplicitAny": true,
|
2018-10-24 21:50:18 +02:00
|
|
|
"noImplicitThis": true,
|
2018-10-18 09:08:59 +02:00
|
|
|
"suppressImplicitAnyIndexErrors":true,
|
2018-10-15 14:35:18 +02:00
|
|
|
"alwaysStrict": true,
|
2019-07-22 15:40:13 +02:00
|
|
|
"strictBindCallApply": true,
|
2019-07-24 16:05:59 +02:00
|
|
|
"target": "es2015",
|
2017-12-11 17:36:46 +01:00
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
2016-09-06 22:40:57 +02:00
|
|
|
],
|
|
|
|
"lib": [
|
2019-08-01 11:38:26 +02:00
|
|
|
"es2018",
|
2017-12-11 17:36:46 +01:00
|
|
|
"dom"
|
2018-01-04 11:19:16 +01:00
|
|
|
],
|
2019-08-01 11:38:26 +02:00
|
|
|
"baseUrl": "./",
|
2018-01-04 11:19:16 +01:00
|
|
|
"paths": {
|
2019-08-01 11:38:26 +02:00
|
|
|
"@app/*": [ "src/app/*" ],
|
|
|
|
"@shared/*": [ "../shared/*" ],
|
|
|
|
"video.js": [ "node_modules/video.js/dist/alt/video.core.js" ],
|
|
|
|
"fs": [ "src/shims/noop" ],
|
|
|
|
"http": [ "src/shims/http" ],
|
|
|
|
"https": [ "src/shims/https" ],
|
|
|
|
"path": [ "src/shims/path" ],
|
|
|
|
"stream": [ "src/shims/noop" ],
|
|
|
|
"crypto": [ "src/shims/noop" ]
|
2018-01-04 11:19:16 +01:00
|
|
|
}
|
2018-07-20 18:31:49 +02:00
|
|
|
},
|
2018-09-28 10:36:26 +02:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
"strictInjectionParameters": true,
|
|
|
|
"fullTemplateTypeCheck": true
|
2019-08-01 11:38:26 +02:00
|
|
|
}
|
2016-03-07 14:48:46 +01:00
|
|
|
}
|