]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
Translated using Weblate (Ukrainian)
[github/Chocobozzz/PeerTube.git] / tsconfig.json
1 {
2 "extends": "./tsconfig.base.json",
3 "compilerOptions": {
4 "outDir": "./dist/",
5 "baseUrl": "./",
6 "paths": {
7 "@server/*": [ "server/*" ],
8 "@shared/*": [ "shared/*" ]
9 },
10 "typeRoots": [
11 "node_modules/@types"
12 ]
13 },
14 "references": [
15 { "path": "./shared" },
16 { "path": "./server" },
17 { "path": "./scripts" }
18 ],
19 "files": [ "server.ts", "server/types/express.d.ts", "server/types/lib.d.ts" ]
20 }