PeerTube/client/tsconfig.json

43 lines
1.0 KiB
JSON
Raw Normal View History

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": {
2019-07-24 09:05:59 -05:00
"downlevelIteration": true,
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,
"noImplicitAny": true,
2018-10-24 14:50:18 -05:00
"noImplicitThis": true,
"suppressImplicitAnyIndexErrors":true,
"alwaysStrict": true,
2019-07-22 08:40:13 -05:00
"strictBindCallApply": true,
2019-07-24 09:05:59 -05:00
"target": "es2015",
2017-12-11 10:36:46 -06:00
"typeRoots": [
"node_modules/@types"
2016-09-06 15:40:57 -05:00
],
"lib": [
2019-08-01 04:38:26 -05:00
"es2018",
2017-12-11 10:36:46 -06:00
"dom"
2018-01-04 04:19:16 -06:00
],
2019-08-01 04:38:26 -05:00
"baseUrl": "./",
2018-01-04 04:19:16 -06:00
"paths": {
2019-08-01 04:38:26 -05:00
"@app/*": [ "src/app/*" ],
"@shared/*": [ "../shared/*" ],
2020-04-17 04:20:12 -05:00
"fs": [ "src/shims/noop.ts" ],
"http": [ "src/shims/http.ts" ],
"https": [ "src/shims/https.ts" ],
"path": [ "src/shims/path.ts" ],
"stream": [ "src/shims/noop.ts" ],
"crypto": [ "src/shims/noop.ts" ]
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,
2020-02-10 07:25:38 -06:00
"fullTemplateTypeCheck": true,
"strictTemplates": true
2019-08-01 04:38:26 -05:00
}
2016-03-07 07:48:46 -06:00
}