X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Ftools%2Ftsconfig.json;h=8264f5b354400af8862e380dbc39726b26819c73;hb=94be5ecc4d7ca1acfae844cbe794fc6f7e690917;hp=f8a1c705c6c0290dc8aa1bae46b47f9b9d1a6753;hpb=b6a1dd4d1b3b0032f8b968e72cbd074f646e8827;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/tools/tsconfig.json b/server/tools/tsconfig.json index f8a1c705c..8264f5b35 100644 --- a/server/tools/tsconfig.json +++ b/server/tools/tsconfig.json @@ -1,4 +1,17 @@ { "extends": "../../tsconfig.json", + "compilerOptions": { + "baseUrl": "./", + "outDir": "../../dist/server/tools", + "paths": { // FIXME: https://github.com/benyap/resolve-tspaths/issues/10 + "@server/*": [ "../../server/*" ], + "@shared/*": [ "../../shared/*" ] + } + }, + "include": [ ".", "../typings" ], + "references": [ + { "path": "../" } + ], + "files": [], "exclude": [ ] // Overwrite exclude property }