]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
Add auto follow back support for instances
[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 "removeComments": true,
10 "outDir": "./dist",
11 "lib": [
12 "dom",
13 "es2015",
14 "es2016",
15 "es2017"
16 ],
17 "typeRoots": [ "node_modules/@types", "server/typings" ],
18 "baseUrl": "./",
19 "paths": {
20 "@server/*": [ "server/*" ]
21 }
22 },
23 "exclude": [
24 "server/tools/",
25 "node_modules",
26 "dist",
27 "storage",
28 "client",
29 "test1",
30 "test2",
31 "test3",
32 "test4",
33 "test5",
34 "test6"
35 ]
36 }