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