From f17a48ca48beb3b2ff5ce1ce053365bb514d6a67 Mon Sep 17 00:00:00 2001 From: boatincow Date: Thu, 7 Jul 2022 11:35:37 +0300 Subject: [PATCH] SOROKA-80: trying commonjs as module type (#29) --- tsconfig.json | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a6b95ca..4401654 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,15 +1,15 @@ { - "compilerOptions": { - "target": "es6", - "module": "es6", - "moduleResolution": "node", - "outDir": "./dist", - "strict": true, - "esModuleInterop": true, - "strictPropertyInitialization": false, + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "moduleResolution": "node", + "outDir": "./dist", + "strict": true, + "esModuleInterop": true, + "strictPropertyInitialization": false, "experimentalDecorators": true, "emitDecoratorMetadata": true, - "jsx": "react", - "allowJs": true - } + "jsx": "react", + "allowJs": true + } }