]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - packages/types/tsconfig.json
Update changelog
[github/Chocobozzz/PeerTube.git] / packages / types / tsconfig.json
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/",
10 "tsBuildInfoFile": "./dist/tsconfig.server.types.tsbuildinfo",
11 "paths": {
12 "@server/*": [ "../../../server/*" ],
13 "@shared/*": [ "../../../shared/*" ],
14 "@client/*": [ "../../../client/src/*" ]
15 }
16 },
17 "references": [
18 { "path": "../../shared/tsconfig.types.json" },
19 { "path": "../../server/tsconfig.types.json" },
20 { "path": "./src/client/tsconfig.json" }
21 ],
22 "files": ["./src/index.ts"]
23 }