diff options
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 | } | ||