aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json19
1 files changed, 19 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..a6c016b
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,19 @@
1{
2 "compileOnSave": false,
3 "compilerOptions": {
4 "outDir": "./dist/out-tsc",
5 "sourceMap": true,
6 "declaration": false,
7 "moduleResolution": "node",
8 "emitDecoratorMetadata": true,
9 "experimentalDecorators": true,
10 "target": "es5",
11 "typeRoots": [
12 "node_modules/@types"
13 ],
14 "lib": [
15 "es2017",
16 "dom"
17 ]
18 }
19}