X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tsconfig.json;h=a14a97dfb2355ee4f7084582f773991e930210dc;hb=06aad80165d09a8863ab8103149a8ff518b10641;hp=075a3d86eccb416e9946e92a51b4005ecb70cb0d;hpb=e874edd9f876df7b4020137b3a9b7feb8078b38f;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.json b/tsconfig.json index 075a3d86e..a14a97dfb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,46 +1,9 @@ { - "compilerOptions": { - "module": "commonjs", - "target": "es2015", - "noImplicitAny": false, - "sourceMap": false, - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "importHelpers": true, - "removeComments": true, - "strictBindCallApply": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "outDir": "./dist", - "lib": [ - "dom", - "es2015", - "es2016", - "es2017", - "es2018", - "es2019" - ], - "typeRoots": [ - "node_modules/@types", - "server/typings" - ], - "baseUrl": "./", - "paths": { - "@server/*": [ "server/*" ], - "@shared/*": [ "shared/*" ] - } - }, - "exclude": [ - "server/tools/", - "node_modules", - "dist", - "storage", - "client", - "test1", - "test2", - "test3", - "test4", - "test5", - "test6" - ] + "extends": "./tsconfig.base.json", + "references": [ + { "path": "./shared" }, + { "path": "./server" }, + { "path": "./scripts" } + ], + "files": ["server.ts"] }