]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.base.json
Don't manage remote channels
[github/Chocobozzz/PeerTube.git] / tsconfig.base.json
CommitLineData
06aad801 1{
2 "compilerOptions": {
3 "module": "commonjs",
4 "target": "es2015",
5 "noImplicitAny": false,
75278e28 6 "sourceMap": true,
06aad801 7 "experimentalDecorators": true,
8 "emitDecoratorMetadata": true,
9 "importHelpers": true,
10 "removeComments": true,
11 "strictBindCallApply": true,
12 "esModuleInterop": true,
13 "forceConsistentCasingInFileNames": true,
14 "lib": [
8b03e2ce 15 "dom",
06aad801 16 "es2015",
17 "es2016",
18 "es2017",
19 "es2018",
20 "es2019"
21 ],
06aad801 22 "baseUrl": "./",
06aad801 23 "paths": {
24 "@server/*": [ "server/*" ],
b8fa3e8c 25 "@shared/*": [ "shared/*" ],
b969539c 26 "@client/*": [ "client/src/*" ]
06aad801 27 },
28 "resolveJsonModule": true,
29 "strict": false,
30 "skipLibCheck": true,
75278e28
C
31 "composite": true,
32 "declarationMap": true
06aad801 33 }
34}