diff options
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index be910b309..71674e165 100644 --- a/tsconfig.json +++ b/tsconfig.json | |||
@@ -1,13 +1,17 @@ | |||
1 | { | 1 | { |
2 | "compilerOptions": { | 2 | "compilerOptions": { |
3 | "module": "commonjs", | 3 | "module": "commonjs", |
4 | "target": "es5", | 4 | "target": "es2015", |
5 | "noImplicitAny": false, | 5 | "noImplicitAny": false, |
6 | "sourceMap": false, | 6 | "sourceMap": false, |
7 | "experimentalDecorators": true, | ||
8 | "emitDecoratorMetadata": true, | ||
7 | "outDir": "./dist", | 9 | "outDir": "./dist", |
8 | "lib": [ | 10 | "lib": [ |
9 | "dom", | 11 | "dom", |
10 | "es2015" | 12 | "es2015", |
13 | "es2016", | ||
14 | "es2017" | ||
11 | ], | 15 | ], |
12 | "types": [ | 16 | "types": [ |
13 | "node" | 17 | "node" |