]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - types/tsconfig.json
Fix types dist paths
[github/Chocobozzz/PeerTube.git] / types / tsconfig.json
CommitLineData
b8fa3e8c 1{
2 "extends": "../tsconfig.base.json",
3 "compilerOptions": {
4 "stripInternal": true,
5 "removeComments": false,
6 "emitDeclarationOnly": true,
7 "outDir": "./dist/",
8 "baseUrl": "./src/",
9 "rootDir": "./src/",
b969539c 10 "tsBuildInfoFile": "./dist/tsconfig.server.types.tsbuildinfo",
b8fa3e8c 11 "paths": {
12 "@server/*": [ "../../server/*" ],
13 "@shared/*": [ "../../shared/*" ],
b969539c 14 "@client/*": [ "../../client/src/*" ]
b8fa3e8c 15 }
16 },
17 "references": [
18 { "path": "../shared/tsconfig.types.json" },
19 { "path": "../server/tsconfig.types.json" },
20 { "path": "./src/client/tsconfig.json" }
21 ],
b969539c 22 "files": ["./src/index.ts"]
b8fa3e8c 23}