X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tsconfig.base.json;h=18ba8f06c8db39f69fcceba5c543760ee996dae1;hb=0c302acb3c358b4d4d8dee45aed1de1108ea37ea;hp=f579c703a7495a552270bbd12893aebc6e0ed5a1;hpb=b8fa3e8c734a46918118afe7976f248cc883f675;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.base.json b/tsconfig.base.json index f579c703a..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": "./", "paths": { "@server/*": [ "server/*" ], "@shared/*": [ "shared/*" ], - "@client/*": [ "client/src/*" ], + "@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 } }