]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
Merge branch 'feature/strong-model-types' into develop
[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 "removeComments": true,
10 "outDir": "./dist",
11 "lib": [
12 "dom",
13 "es2015",
14 "es2016",
15 "es2017"
16 ],
17 "typeRoots": [ "node_modules/@types", "server/typings" ],
18 "baseUrl": "./",
19 "paths": {
20 "@server/typings/*": [ "server/typings/*" ],
21 "@server/models/*": [ "server/models/*" ]
22 }
23 },
24 "exclude": [
25 "server/tools/",
26 "node_modules",
27 "dist",
28 "storage",
29 "client",
30 "test1",
31 "test2",
32 "test3",
33 "test4",
34 "test5",
35 "test6"
36 ]
37 }