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