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