From 8b60fea296cd613e8309eb91f899cd3ed16284b5 Mon Sep 17 00:00:00 2001 From: Ernesto Resende Date: Sat, 4 Feb 2023 16:43:43 -0300 Subject: [PATCH] chore: changes tsconfig compile options --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 935835d..dca30ba 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,15 +3,15 @@ "rootDir": "./src", "outDir": "./dist", "baseUrl": ".", + "target": "ES2020", + "module": "CommonJS", "downlevelIteration": true, - "module": "ESNext", "moduleResolution": "node", "strict": true, "esModuleInterop": true, "sourceMap": true, "declaration": true, "declarationMap": true, - "removeComments": true, "noImplicitAny": true, "noImplicitReturns": true, "noImplicitOverride": true,