X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tsconfig.json;h=a14a97dfb2355ee4f7084582f773991e930210dc;hb=06aad80165d09a8863ab8103149a8ff518b10641;hp=f2985f82b1c3b408f10d18ec02068d251c2478d3;hpb=6f1b4fa417786c2015f16b435e872aa65378efd7;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.json b/tsconfig.json index f2985f82b..a14a97dfb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,37 +1,9 @@ { - "compilerOptions": { - "module": "commonjs", - "target": "es2015", - "noImplicitAny": false, - "sourceMap": false, - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "removeComments": true, - "outDir": "./dist", - "lib": [ - "dom", - "es2015", - "es2016", - "es2017" - ], - "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"] }