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