X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tsconfig.base.json;h=18ba8f06c8db39f69fcceba5c543760ee996dae1;hb=c6ffe7fb2b05269f68d40871117a6082d134cd62;hp=349c4de6c4685cacd3e7dd32460ce60cc8ab4ba3;hpb=8b03e2ce1a2098261de2f729f660b1ae2a320b65;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.base.json b/tsconfig.base.json index 349c4de6c..18ba8f06c 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -3,12 +3,11 @@ "module": "commonjs", "target": "es2015", "noImplicitAny": false, - "sourceMap": false, + "sourceMap": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "importHelpers": true, "removeComments": true, - "strictBindCallApply": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "lib": [ @@ -19,19 +18,21 @@ "es2018", "es2019" ], - "typeRoots": [ - "node_modules/@types", - "client/node_modules/@types" - ], "baseUrl": "./", - "outDir": "./dist/", "paths": { "@server/*": [ "server/*" ], - "@shared/*": [ "shared/*" ] + "@shared/*": [ "shared/*" ], + "@client/*": [ "client/src/*" ] }, "resolveJsonModule": true, "strict": false, + "strictBindCallApply": true, + "allowUnreachableCode": false, + "allowUnusedLabels": false, + "noFallthroughCasesInSwitch": true, + "noUnusedLocals": true, "skipLibCheck": true, - "composite": true + "composite": true, + "declarationMap": true } }