]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.json
Translated using Weblate (Hungarian)
[github/Chocobozzz/PeerTube.git] / tsconfig.json
CommitLineData
65fcc311
C
1{
2 "compilerOptions": {
3 "module": "commonjs",
3fd3ab2d 4 "target": "es2015",
65fcc311
C
5 "noImplicitAny": false,
6 "sourceMap": false,
3fd3ab2d
C
7 "experimentalDecorators": true,
8 "emitDecoratorMetadata": true,
8704acf4 9 "removeComments": true,
65fcc311
C
10 "outDir": "./dist",
11 "lib": [
0e1dc3e7 12 "dom",
3fd3ab2d
C
13 "es2015",
14 "es2016",
fc8aabd0
C
15 "es2017",
16 "es2018",
17 "es2019"
65fcc311 18 ],
d5d9b6d7
C
19 "typeRoots": [
20 "node_modules/sitemap/node_modules/@types",
d7a25329 21 "node_modules/@types"
d5d9b6d7 22 ],
453e83ea
C
23 "baseUrl": "./",
24 "paths": {
6f1b4fa4
C
25 "@server/*": [ "server/*" ],
26 "@shared/*": [ "shared/*" ]
453e83ea 27 }
65fcc311
C
28 },
29 "exclude": [
7e9d3f25 30 "server/tools/",
65fcc311 31 "node_modules",
ecb4e35f
C
32 "dist",
33 "storage",
94a5ff8a 34 "client",
f6a043df
C
35 "test1",
36 "test2",
37 "test3",
38 "test4",
39 "test5",
40 "test6"
65fcc311
C
41 ]
42}