From d7805caecf11f1d98ca84480207a68f3bdfd7e9d Mon Sep 17 00:00:00 2001 From: Jeremy Danyow Date: Sun, 27 Jan 2019 13:44:26 -0800 Subject: [PATCH] fix type resolution --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 95c34fa..308ae98 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,12 @@ { "compilerOptions": { "target": "es5", - "module": "commonjs", + "module": "esnext", "lib": [ "dom", "es2017" ], + "types": [], "strict": true, "noFallthroughCasesInSwitch": true, "noImplicitAny": true,