]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.base.json
More robust runner update handler
[github/Chocobozzz/PeerTube.git] / tsconfig.base.json
1 {
2 "compilerOptions": {
3 "module": "commonjs",
4 "target": "es2015",
5 "noImplicitAny": false,
6 "sourceMap": true,
7 "experimentalDecorators": true,
8 "emitDecoratorMetadata": true,
9 "importHelpers": true,
10 "removeComments": true,
11 "esModuleInterop": true,
12 "forceConsistentCasingInFileNames": true,
13 "lib": [
14 "dom",
15 "es2015",
16 "es2016",
17 "es2017",
18 "es2018",
19 "es2019"
20 ],
21 "baseUrl": "./",
22 "paths": {
23 "@server/*": [ "server/*" ],
24 "@shared/*": [ "shared/*" ],
25 "@client/*": [ "client/src/*" ]
26 },
27 "resolveJsonModule": true,
28 "strict": false,
29 "strictBindCallApply": true,
30 "allowUnreachableCode": false,
31 "allowUnusedLabels": false,
32 "noFallthroughCasesInSwitch": true,
33 "noUnusedLocals": true,
34 "skipLibCheck": true,
35 "composite": true,
36 "declarationMap": true
37 }
38 }