]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
Merge branch 'release/3.3.0' 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 "importHelpers": true,
10 "removeComments": true,
11 "strictBindCallApply": true,
12 "outDir": "./dist",
13 "lib": [
14 "dom",
15 "es2015",
16 "es2016",
17 "es2017",
18 "es2018",
19 "es2019"
20 ],
21 "typeRoots": [
22 "node_modules/sitemap/node_modules/@types",
23 "node_modules/@types",
24 "server/typings"
25 ],
26 "baseUrl": "./",
27 "paths": {
28 "@server/*": [ "server/*" ],
29 "@shared/*": [ "shared/*" ]
30 }
31 },
32 "exclude": [
33 "server/tools/",
34 "node_modules",
35 "dist",
36 "storage",
37 "client",
38 "test1",
39 "test2",
40 "test3",
41 "test4",
42 "test5",
43 "test6"
44 ]
45 }