one cli to unite them all
[oweals/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     "removeComments": true,
10     "outDir": "./dist",
11     "lib": [
12       "dom",
13       "es2015",
14       "es2016",
15       "es2017"
16     ],
17     "types": [
18       "node",
19       "chai-xml",
20       "chai-json-schema"
21     ]
22   },
23   "exclude": [
24     "client/node_modules",
25     "node_modules",
26     "dist",
27     "storage",
28     "client",
29     "test1",
30     "test2",
31     "test3",
32     "test4",
33     "test5",
34     "test6"
35   ]
36 }