]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
Prevent caption listing of private videos
[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 "importHelpers": true,
10 "removeComments": true,
11 "strictBindCallApply": true,
12 "esModuleInterop": true,
13 "forceConsistentCasingInFileNames": true,
14 "outDir": "./dist",
15 "lib": [
16 "dom",
17 "es2015",
18 "es2016",
19 "es2017",
20 "es2018",
21 "es2019"
22 ],
23 "typeRoots": [
24 "node_modules/@types",
25 "server/typings"
26 ],
27 "baseUrl": "./",
28 "paths": {
29 "@server/*": [ "server/*" ],
30 "@shared/*": [ "shared/*" ]
31 }
32 },
33 "exclude": [
34 "server/tools/",
35 "node_modules",
36 "dist",
37 "storage",
38 "client",
39 "test1",
40 "test2",
41 "test3",
42 "test4",
43 "test5",
44 "test6"
45 ]
46 }