X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tsconfig.json;h=993acf81d43f03ad3efd868f2c47aacd1f7dc14d;hb=c4051544e6e18a667a5a9b2a7ab5aceb92e532da;hp=a14a97dfb2355ee4f7084582f773991e930210dc;hpb=06aad80165d09a8863ab8103149a8ff518b10641;p=github%2FChocobozzz%2FPeerTube.git diff --git a/tsconfig.json b/tsconfig.json index a14a97dfb..993acf81d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,21 @@ { "extends": "./tsconfig.base.json", + "compilerOptions": { + "outDir": "./dist/", + "baseUrl": "./", + "paths": { + "@server/*": [ "server/*" ], + "@shared/*": [ "shared/*" ] + }, + "typeRoots": [ + "server/typings", + "node_modules/@types" + ] + }, "references": [ { "path": "./shared" }, { "path": "./server" }, { "path": "./scripts" } ], - "files": ["server.ts"] + "files": [ "server.ts", "server/types/express.d.ts" ] }