From 355ed6472fb6d73032de5822489142ef77879a34 Mon Sep 17 00:00:00 2001 From: Cory Caywood Date: Tue, 21 Apr 2020 12:52:26 +0900 Subject: [PATCH] build: Use 'node' module resolution for TS compile Module resolution wasn't working correctly when merging the changes for the sample app. See: https://www.typescriptlang.org/docs/handbook/module-resolution.html\#module-resolution-strategies --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 031823d45..a19e93ba8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,7 @@ "strict": false, "target": "ES5", "lib": ["dom"], - "esModuleInterop": true + "esModuleInterop": true, + "moduleResolution": "node" } }