From 17ff302e1d8102a507d04de22d75d940df395a43 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 8 Jan 2018 16:48:05 -0500 Subject: [PATCH] use es6 modules --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 910bfbb9cfd..ae7700ef6af 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,8 @@ { "compilerOptions": { + "moduleResolution": "node", "noImplicitAny": true, - "module": "commonjs", + "module": "es6", "target": "ES2016", "allowJs": true, "sourceMap": true,