X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tsconfig.base.json;h=18ba8f06c8db39f69fcceba5c543760ee996dae1;hb=0c302acb3c358b4d4d8dee45aed1de1108ea37ea;hp=ef86b97975f18a822d45ddf489789dd2ae25f5b3;hpb=06aad80165d09a8863ab8103149a8ff518b10641;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.base.json b/tsconfig.base.json index ef86b9797..18ba8f06c 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -3,33 +3,36 @@ "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": [ + "dom", "es2015", "es2016", "es2017", "es2018", "es2019" ], - "typeRoots": [ - "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 } }