X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=1668cfced03d1c35a4a4944638bde0849cafea5a;hb=b00f185643e521c696eedff8c32701b723994acd;hp=e46528d1c9117717cd9c5bc8d304ec88d2aa64b7;hpb=97567dd81f508dd6295ac4d73d849aa2ce0a6549;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index e46528d1c..1668cfced 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,56 +1,102 @@ { "compileOnSave": false, "compilerOptions": { + "downlevelIteration": true, "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "moduleResolution": "node", - "module": "esnext", - "emitDecoratorMetadata": true, + "module": "es2020", "experimentalDecorators": true, "noImplicitAny": true, "noImplicitThis": true, - "suppressImplicitAnyIndexErrors":true, + "suppressImplicitAnyIndexErrors": true, "alwaysStrict": true, - "target": "es5", + "importHelpers": true, + "allowSyntheticDefaultImports": true, + "strictBindCallApply": true, + "target": "ES2022", "typeRoots": [ "node_modules/@types" ], "lib": [ + "ES2021.Intl", + "es2018", "es2017", "es2016", "es2015", "dom" ], - "types": [ - "jasmine" - ], - "baseUrl": "src", + "baseUrl": "./", "paths": { - "@app/*": [ "app/*" ], - "@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" ] - } - }, - "angularCompilerOptions": { - "strictInjectionParameters": true, - "fullTemplateTypeCheck": true + "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 }, + "files": [ + "src/polyfills.ts" + ], "include": [ - "./src", - "../../shared" + "src/main*.ts", + "src/**/*.d.ts", + "src/shims/*.ts" ], "exclude": [ - "../../node_modules", "../node_modules", - "../dist", - "../../server", - "../src/**/*.spec.ts" - ] + "../server", + "node_modules" + ], + "angularCompilerOptions": { + "strictInjectionParameters": true, + "fullTemplateTypeCheck": true, + "strictTemplates": true, + "enableI18nLegacyMessageIdFormat": false + } }