X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=tsconfig.base.json;h=a323b0d05e5293f2682f3809c8b39da8f2c66c23;hb=b8a4afa4c2ba8ed8ebfc4530f002f0e5037a0cf3;hp=ef86b97975f18a822d45ddf489789dd2ae25f5b3;hpb=06aad80165d09a8863ab8103149a8ff518b10641;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.base.json b/tsconfig.base.json index ef86b9797..a323b0d05 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -3,7 +3,7 @@ "module": "commonjs", "target": "es2015", "noImplicitAny": false, - "sourceMap": false, + "sourceMap": true, "experimentalDecorators": true, "emitDecoratorMetadata": true, "importHelpers": true, @@ -12,6 +12,7 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "lib": [ + "dom", "es2015", "es2016", "es2017", @@ -20,16 +21,18 @@ ], "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, "skipLibCheck": true, - "composite": true + "composite": true, + "declarationMap": true } }