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