]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
Fixing #626 with ffmpeg's low default audio bitrate
[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 "outDir": "./dist",
10 "lib": [
11 "dom",
12 "es2015",
13 "es2016",
14 "es2017"
15 ],
16 "types": [
17 "node",
18 "chai-xml",
19 "chai-json-schema"
20 ]
21 },
22 "exclude": [
23 "node_modules",
24 "dist",
25 "storage",
26 "client",
27 "test1",
28 "test2",
29 "test3",
30 "test4",
31 "test5",
32 "test6"
33 ]
34 }