diff --git a/scripts/build.mjs b/scripts/build.mjs index 8c0cea3..2e6f4e0 100644 --- a/scripts/build.mjs +++ b/scripts/build.mjs @@ -50,12 +50,13 @@ async function main() { { ...pkg, files: ["dist-*/**", "bin/**"], - main: "./dist-src/index.js", types: "./dist-types/index.d.ts", exports: { ".": { types: "./dist-types/index.d.ts", import: "./dist-src/index.js", + // Tooling currently are having issues with the "exports" field when there is no "default", ex: TypeScript, eslint + default: "./dist-src/index.js", } }, sideEffects: false,