From 18378c50174cf3615d84068ae2f8ce89d2191ffb Mon Sep 17 00:00:00 2001 From: Jesse Ezell Date: Mon, 23 Dec 2019 16:15:32 -0800 Subject: [PATCH] fix compile error on npm run build --- tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b5dba9f8..b2dbd378 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,8 @@ "extends": "rete-cli/tsconfig.json", "compilerOptions": { "target": "es5", - "downlevelIteration": true + "downlevelIteration": true, + "isolatedModules": false }, "include": ["src"] -} \ No newline at end of file +}