From ac3aedc61d0ece1584f8faab844421f831c61399 Mon Sep 17 00:00:00 2001 From: Breno Salles Date: Sat, 27 Mar 2021 17:59:26 +0000 Subject: [PATCH] fix: tsconfig-build.json --- tsconfig-build.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tsconfig-build.json b/tsconfig-build.json index 6d4ceef..2b37f58 100644 --- a/tsconfig-build.json +++ b/tsconfig-build.json @@ -3,8 +3,10 @@ "target": "ES2015", "outDir": "./lib", "rootDir": "./src", - "declaration": true + "declaration": true, + "moduleResolution": "node", + "esModuleInterop": true }, "include": ["./src/**/*.ts"], - "exclude": ["./tests"] + "exclude": ["./tests/**/*"] }