]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.json
Add ability to disable webtorrent
[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,
8704acf4 9 "removeComments": true,
65fcc311
C
10 "outDir": "./dist",
11 "lib": [
0e1dc3e7 12 "dom",
3fd3ab2d
C
13 "es2015",
14 "es2016",
15 "es2017"
65fcc311 16 ],
d5d9b6d7
C
17 "typeRoots": [
18 "node_modules/sitemap/node_modules/@types",
d7a25329 19 "node_modules/@types"
d5d9b6d7 20 ],
453e83ea
C
21 "baseUrl": "./",
22 "paths": {
6f1b4fa4
C
23 "@server/*": [ "server/*" ],
24 "@shared/*": [ "shared/*" ]
453e83ea 25 }
65fcc311
C
26 },
27 "exclude": [
7e9d3f25 28 "server/tools/",
65fcc311 29 "node_modules",
ecb4e35f
C
30 "dist",
31 "storage",
94a5ff8a 32 "client",
f6a043df
C
33 "test1",
34 "test2",
35 "test3",
36 "test4",
37 "test5",
38 "test6"
65fcc311
C
39 ]
40}