1
0
Fork 0
peertube/client/tsconfig.json

70 lines
1.9 KiB
JSON
Raw Normal View History

2016-03-07 13:48:46 +00:00
{
2021-08-17 12:01:51 +00:00
"compileOnSave": false,
"compilerOptions": {
"downlevelIteration": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
2022-05-24 14:29:01 +00:00
"module": "es2020",
2021-08-17 12:01:51 +00:00
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitThis": true,
"suppressImplicitAnyIndexErrors":true,
"alwaysStrict": true,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
2021-08-17 12:01:51 +00:00
"strictBindCallApply": true,
2022-05-24 14:29:01 +00:00
"target": "es2017",
2021-08-17 12:01:51 +00:00
"typeRoots": [
"node_modules/@types"
],
"lib": [
2022-08-10 08:26:20 +00:00
"ES2021.Intl",
2021-08-17 12:01:51 +00:00
"es2018",
"es2017",
"es2016",
"es2015",
"dom"
],
"baseUrl": "./",
"paths": {
"hls.js": [ "node_modules/hls.js/dist/hls.light" ],
"video.js": [ "node_modules/video.js/core" ],
"@app/*": [ "src/app/*" ],
"@shared/models/*": [ "../shared/models/*" ],
"@shared/models": [ "../shared/models" ],
"@shared/core-utils": [ "../shared/core-utils" ],
"@shared/core-utils/*": [ "../shared/core-utils/*" ],
2021-12-17 12:58:07 +00:00
"@shared/typescript-utils": [ "../shared/typescript-utils" ],
"@shared/typescript-utils/*": [ "../shared/typescript-utils/*" ],
2021-08-17 12:01:51 +00:00
"@root-helpers/*": [ "src/root-helpers/*" ],
"fs": [ "src/shims/noop.ts" ],
"http": [ "src/shims/http.ts" ],
"https": [ "src/shims/https.ts" ],
"path": [ "src/shims/path.ts" ],
"stream": [ "src/shims/stream.ts" ],
"crypto": [ "src/shims/noop.ts" ]
2018-01-04 10:19:16 +00:00
}
2021-08-17 12:01:51 +00:00
},
"files": [
"src/polyfills.ts"
],
"include": [
"src/main*.ts",
"src/**/*.d.ts",
"src/shims/*.ts"
],
"exclude": [
"../node_modules",
2021-08-17 12:42:53 +00:00
"../server",
"node_modules"
2021-08-17 12:01:51 +00:00
],
"angularCompilerOptions": {
"strictInjectionParameters": true,
"fullTemplateTypeCheck": true,
"strictTemplates": true,
"enableI18nLegacyMessageIdFormat": false
}
2016-03-07 13:48:46 +00:00
}