1
0
Fork 0
peertube/client/tsconfig.json

57 lines
1.2 KiB
JSON
Raw Normal View History

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