]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
70d2c51c2aa374740cf92e02cacf81f3bfd04351
[github/Chocobozzz/PeerTube.git] / tsconfig.json
1 {
2 "compilerOptions": {
3 "module": "commonjs",
4 "target": "es2015",
5 "noImplicitAny": false,
6 "sourceMap": false,
7 "experimentalDecorators": true,
8 "emitDecoratorMetadata": true,
9 "outDir": "./dist",
10 "lib": [
11 "dom",
12 "es2015",
13 "es2016",
14 "es2017"
15 ],
16 "types": [
17 "node"
18 ]
19 },
20 "exclude": [
21 "node_modules",
22 "dist",
23 "storage",
24 "client",
25 "test1",
26 "test2",
27 "test3",
28 "test4",
29 "test5",
30 "test6"
31 ]
32 }