X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=64266d49db000733104030b2f1a4904b8b023638;hb=ba3de18cfee15df7981f5849096f7136d77f9021;hp=a7b690c7b77ffa3e8dcac111b8a0b5f8bf77112a;hpb=4504f09f6e85f09b0489debb547a17209d7176ea;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index a7b690c7b..64266d49d 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,45 +1,14 @@ +/* + This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. + It is not intended to be used to perform a compilation. + + To learn more about this file see: https://angular.io/config/solution-tsconfig. +*/ { - "compileOnSave": false, - "compilerOptions": { - "downlevelIteration": true, - "outDir": "./dist/out-tsc", - "sourceMap": true, - "declaration": false, - "moduleResolution": "node", - "module": "esnext", - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "noImplicitAny": true, - "noImplicitThis": true, - "suppressImplicitAnyIndexErrors":true, - "alwaysStrict": true, - "importHelpers": true, - "strictBindCallApply": true, - "target": "es2015", - "typeRoots": [ - "node_modules/@types" - ], - "lib": [ - "es2018", - "dom" - ], - "baseUrl": "./", - "paths": { - "video.js": [ "node_modules/video.js/core" ], - "@app/*": [ "src/app/*" ], - "@shared/*": [ "../shared/*" ], - "@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/noop.ts" ], - "crypto": [ "src/shims/noop.ts" ] + "files": [], + "references": [ + { + "path": "./tsconfig.app.json" } - }, - "angularCompilerOptions": { - "strictInjectionParameters": true, - "fullTemplateTypeCheck": true, - "strictTemplates": true - } + ] }