From 8c3e66cf0641a68a686b6003372fbfa85962ba4f Mon Sep 17 00:00:00 2001 From: Igor Ivaniuk Date: Tue, 26 Feb 2019 20:48:25 +0200 Subject: [PATCH] fix: build target --- tsconfig.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 215a7f1..aaf025f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,8 +1,8 @@ { "compilerOptions": { "moduleResolution": "node", - "target": "es5", - "module":"es2015", + "target": "es2017", + "module":"commonjs", "lib": ["es2015", "es2016", "es2017", "dom"], "strict": true, "sourceMap": true, @@ -18,5 +18,8 @@ }, "include": [ "src" + ], + "exclude": [ + "node_modules" ] }