Merge branch 'master' into develop
[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     "typeRoots": [ "node_modules/@types", "server/typings" ]
18   },
19   "exclude": [
20     "client/node_modules",
21     "node_modules",
22     "dist",
23     "storage",
24     "client",
25     "test1",
26     "test2",
27     "test3",
28     "test4",
29     "test5",
30     "test6"
31   ]
32 }