]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.json
Translated using Weblate (Esperanto)
[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,
e0ef8dab 9 "importHelpers": true,
8704acf4 10 "removeComments": true,
65fcc311
C
11 "outDir": "./dist",
12 "lib": [
0e1dc3e7 13 "dom",
3fd3ab2d
C
14 "es2015",
15 "es2016",
fc8aabd0
C
16 "es2017",
17 "es2018",
18 "es2019"
65fcc311 19 ],
d5d9b6d7
C
20 "typeRoots": [
21 "node_modules/sitemap/node_modules/@types",
26d6bf65
C
22 "node_modules/@types",
23 "server/typings"
d5d9b6d7 24 ],
453e83ea
C
25 "baseUrl": "./",
26 "paths": {
6f1b4fa4
C
27 "@server/*": [ "server/*" ],
28 "@shared/*": [ "shared/*" ]
453e83ea 29 }
65fcc311
C
30 },
31 "exclude": [
7e9d3f25 32 "server/tools/",
65fcc311 33 "node_modules",
ecb4e35f
C
34 "dist",
35 "storage",
94a5ff8a 36 "client",
f6a043df
C
37 "test1",
38 "test2",
39 "test3",
40 "test4",
41 "test5",
42 "test6"
65fcc311
C
43 ]
44}