X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=64266d49db000733104030b2f1a4904b8b023638;hb=6fad8e51c47b9d07bea99b777c1f55c10f6d576d;hp=ce83a4f11c41685d0fb5a779d23de37c836d368b;hpb=610d0be13b3d01f653ef269271dd667a57c85ef2;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index ce83a4f11..64266d49d 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -1,43 +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, - "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/*" ], - "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 - } + ] }