]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
esModuleInterop to true
[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 "outDir": "./dist",
14 "lib": [
15 "dom",
16 "es2015",
17 "es2016",
18 "es2017",
19 "es2018",
20 "es2019"
21 ],
22 "typeRoots": [
23 "node_modules/sitemap/node_modules/@types",
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 }