]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.json
Rename signup steps
[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": [
7e9d3f25 20 "server/tools/",
fbad87b0 21 "client/node_modules",
65fcc311 22 "node_modules",
ecb4e35f
C
23 "dist",
24 "storage",
94a5ff8a 25 "client",
f6a043df
C
26 "test1",
27 "test2",
28 "test3",
29 "test4",
30 "test5",
31 "test6"
65fcc311
C
32 ]
33}