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