]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.json
Use default nsfw instance policy for search index
[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",
d7a25329 22 "node_modules/@types"
d5d9b6d7 23 ],
453e83ea
C
24 "baseUrl": "./",
25 "paths": {
6f1b4fa4
C
26 "@server/*": [ "server/*" ],
27 "@shared/*": [ "shared/*" ]
453e83ea 28 }
65fcc311
C
29 },
30 "exclude": [
7e9d3f25 31 "server/tools/",
65fcc311 32 "node_modules",
ecb4e35f
C
33 "dist",
34 "storage",
94a5ff8a 35 "client",
f6a043df
C
36 "test1",
37 "test2",
38 "test3",
39 "test4",
40 "test5",
41 "test6"
65fcc311
C
42 ]
43}