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/**/*"] }