]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.json
(doc) add link to hardware requirements in README (#1848)
[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 ],
dae86118 17 "typeRoots": [ "node_modules/@types", "server/typings" ]
65fcc311
C
18 },
19 "exclude": [
fbad87b0 20 "client/node_modules",
65fcc311 21 "node_modules",
ecb4e35f
C
22 "dist",
23 "storage",
94a5ff8a 24 "client",
f6a043df
C
25 "test1",
26 "test2",
27 "test3",
28 "test4",
29 "test5",
30 "test6"
65fcc311
C
31 ]
32}