]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
Set sort refractoring
[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 ]
19 },
20 "exclude": [
21 "node_modules",
22 "client"
23 ]
24 }