X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tsconfig.json;h=a14a97dfb2355ee4f7084582f773991e930210dc;hb=06aad80165d09a8863ab8103149a8ff518b10641;hp=4d2bdd6baf4f2df9168ef9888b689fdea362af8b;hpb=b91bc1d1f3591c35ab4426f6ab594b4bd9f1ef62;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.json b/tsconfig.json index 4d2bdd6ba..a14a97dfb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,33 +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" ] - }, - "exclude": [ - "server/tools/", - "client/node_modules", - "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"] }