X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tsconfig.json;h=075a3d86eccb416e9946e92a51b4005ecb70cb0d;hb=4cfaec956d583372ddc5905ed6b7c4f1d85c8813;hp=5ad4b3e10c707fba0da996a8645f16e7ea60ba74;hpb=dae86118ed5d4026d04acb9d0e36829b9ad8eb4e;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.json b/tsconfig.json index 5ad4b3e10..075a3d86e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,18 +6,32 @@ "sourceMap": false, "experimentalDecorators": true, "emitDecoratorMetadata": true, + "importHelpers": true, "removeComments": true, + "strictBindCallApply": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, "outDir": "./dist", "lib": [ "dom", "es2015", "es2016", - "es2017" + "es2017", + "es2018", + "es2019" ], - "typeRoots": [ "node_modules/@types", "server/typings" ] + "typeRoots": [ + "node_modules/@types", + "server/typings" + ], + "baseUrl": "./", + "paths": { + "@server/*": [ "server/*" ], + "@shared/*": [ "shared/*" ] + } }, "exclude": [ - "client/node_modules", + "server/tools/", "node_modules", "dist", "storage",