PeerTube/client/tsconfig.json

102 lines
2.1 KiB
JSON
Raw Normal View History

2016-03-07 14:48:46 +01:00
{
2021-08-17 14:01:51 +02:00
"compileOnSave": false,
"compilerOptions": {
"downlevelIteration": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
2022-05-24 16:29:01 +02:00
"module": "es2020",
2021-08-17 14:01:51 +02:00
"experimentalDecorators": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
2021-08-17 14:01:51 +02:00
"strictBindCallApply": true,
2023-02-16 14:17:00 +01:00
"target": "ES2022",
2021-08-17 14:01:51 +02:00
"typeRoots": [
"node_modules/@types"
],
"lib": [
2022-08-10 10:26:20 +02:00
"ES2021.Intl",
2021-08-17 14:01:51 +02:00
"es2018",
"es2017",
"es2016",
"es2015",
"dom"
],
"baseUrl": "./",
"paths": {
2023-02-16 14:17:00 +01:00
"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/*"
],
"@shared/typescript-utils": [
"../shared/typescript-utils"
],
"@shared/typescript-utils/*": [
"../shared/typescript-utils/*"
],
"@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"
]
},
"useDefineForClassFields": false
2021-08-17 14:01:51 +02:00
},
"files": [
"src/polyfills.ts"
],
"include": [
"src/main*.ts",
"src/**/*.d.ts",
"src/shims/*.ts"
],
"exclude": [
"../node_modules",
2021-08-17 14:42:53 +02:00
"../server",
"node_modules"
2021-08-17 14:01:51 +02:00
],
"angularCompilerOptions": {
"strictInjectionParameters": true,
"fullTemplateTypeCheck": true,
"strictTemplates": true,
"enableI18nLegacyMessageIdFormat": false
}
2016-03-07 14:48:46 +01:00
}