]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - tsconfig.json
Don't quick transcode with the wrong pixel format
[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,
8704acf4 9 "removeComments": true,
65fcc311
C
10 "outDir": "./dist",
11 "lib": [
0e1dc3e7 12 "dom",
3fd3ab2d
C
13 "es2015",
14 "es2016",
15 "es2017"
65fcc311 16 ],
453e83ea
C
17 "typeRoots": [ "node_modules/@types", "server/typings" ],
18 "baseUrl": "./",
19 "paths": {
6f1b4fa4
C
20 "@server/*": [ "server/*" ],
21 "@shared/*": [ "shared/*" ]
453e83ea 22 }
65fcc311
C
23 },
24 "exclude": [
7e9d3f25 25 "server/tools/",
65fcc311 26 "node_modules",
ecb4e35f
C
27 "dist",
28 "storage",
94a5ff8a 29 "client",
f6a043df
C
30 "test1",
31 "test2",
32 "test3",
33 "test4",
34 "test5",
35 "test6"
65fcc311
C
36 ]
37}