]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.json
Fix lint
[github/Chocobozzz/PeerTube.git] / tsconfig.json
CommitLineData
65fcc311
C
1{
2 "compilerOptions": {
3 "module": "commonjs",
3fd3ab2d 4 "target": "es2015",
65fcc311
C
5 "noImplicitAny": false,
6 "sourceMap": false,
3fd3ab2d
C
7 "experimentalDecorators": true,
8 "emitDecoratorMetadata": true,
e0ef8dab 9 "importHelpers": true,
8704acf4 10 "removeComments": true,
0c1a77e9 11 "strictBindCallApply": true,
41fb13c3 12 "esModuleInterop": true,
e874edd9 13 "forceConsistentCasingInFileNames": true,
65fcc311
C
14 "outDir": "./dist",
15 "lib": [
0e1dc3e7 16 "dom",
3fd3ab2d
C
17 "es2015",
18 "es2016",
fc8aabd0
C
19 "es2017",
20 "es2018",
21 "es2019"
65fcc311 22 ],
d5d9b6d7 23 "typeRoots": [
26d6bf65
C
24 "node_modules/@types",
25 "server/typings"
d5d9b6d7 26 ],
453e83ea
C
27 "baseUrl": "./",
28 "paths": {
6f1b4fa4
C
29 "@server/*": [ "server/*" ],
30 "@shared/*": [ "shared/*" ]
453e83ea 31 }
65fcc311
C
32 },
33 "exclude": [
7e9d3f25 34 "server/tools/",
65fcc311 35 "node_modules",
ecb4e35f
C
36 "dist",
37 "storage",
94a5ff8a 38 "client",
f6a043df
C
39 "test1",
40 "test2",
41 "test3",
42 "test4",
43 "test5",
44 "test6"
65fcc311
C
45 ]
46}