]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.base.json
Fix build
[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,
06aad801 11 "esModuleInterop": true,
12 "forceConsistentCasingInFileNames": true,
13 "lib": [
8b03e2ce 14 "dom",
06aad801 15 "es2015",
16 "es2016",
17 "es2017",
18 "es2018",
19 "es2019"
20 ],
06aad801 21 "baseUrl": "./",
06aad801 22 "paths": {
23 "@server/*": [ "server/*" ],
b8fa3e8c 24 "@shared/*": [ "shared/*" ],
b969539c 25 "@client/*": [ "client/src/*" ]
06aad801 26 },
27 "resolveJsonModule": true,
28 "strict": false,
38f57175
C
29 "strictBindCallApply": true,
30 "allowUnreachableCode": false,
31 "allowUnusedLabels": false,
32 "noFallthroughCasesInSwitch": true,
33 "noUnusedLocals": true,
06aad801 34 "skipLibCheck": true,
75278e28
C
35 "composite": true,
36 "declarationMap": true
06aad801 37 }
38}