diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-05-15 22:22:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-05-20 09:57:40 +0200 |
commit | 65fcc3119c334b75dd13bcfdebf186afdc580a8f (patch) | |
tree | 4f2158c61a9b7c3f47cfa233d01413b946ee53c0 /tsconfig.json | |
parent | d5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff) | |
download | PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip |
First typescript iteration
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 000000000..039881230 --- /dev/null +++ b/tsconfig.json | |||
@@ -0,0 +1,19 @@ | |||
1 | { | ||
2 | "compilerOptions": { | ||
3 | "module": "commonjs", | ||
4 | "target": "es5", | ||
5 | "noImplicitAny": false, | ||
6 | "sourceMap": false, | ||
7 | "outDir": "./dist", | ||
8 | "lib": [ | ||
9 | "es2015" | ||
10 | ], | ||
11 | "types": [ | ||
12 | "node" | ||
13 | ] | ||
14 | }, | ||
15 | "exclude": [ | ||
16 | "node_modules", | ||
17 | "client" | ||
18 | ] | ||
19 | } | ||