From a2e5fa5f87fd87b35d778423975cd0d81583f2da Mon Sep 17 00:00:00 2001 From: Simon Planinschek Date: Tue, 6 Oct 2020 10:19:09 +0200 Subject: [PATCH] Fixed module error. Changes ESNext modules format to CommonJS. NodeJS does not support ES6 Import syntax --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index fbd49a7ee..b8c6e0564 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "module": "ESNext", + "module": "CommonJS", "target": "ES5", "jsx": "react", "moduleResolution": "Node",