]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
e23c8eed1c487cd8835d12044dbf5ea5cc0af140
[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": [
18 "node_modules/sitemap/node_modules/@types",
19 "node_modules/@types",
20 "server/typings"
21 ],
22 "baseUrl": "./",
23 "paths": {
24 "@server/*": [ "server/*" ],
25 "@shared/*": [ "shared/*" ]
26 }
27 },
28 "exclude": [
29 "server/tools/",
30 "node_modules",
31 "dist",
32 "storage",
33 "client",
34 "test1",
35 "test2",
36 "test3",
37 "test4",
38 "test5",
39 "test6"
40 ]
41 }