]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - tsconfig.json
Convert tests to typescript
[github/Chocobozzz/PeerTube.git] / tsconfig.json
1 {
2 "compilerOptions": {
3 "module": "commonjs",
4 "target": "es5",
5 "noImplicitAny": false,
6 "sourceMap": false,
7 "outDir": "./dist",
8 "lib": [
9 "dom",
10 "es2015"
11 ],
12 "types": [
13 "node"
14 ]
15 },
16 "exclude": [
17 "node_modules",
18 "client"
19 ]
20 }