You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The entry point used to be:
```ts
export { default } from './index.es';
export * from './connectors';
export * from './helpers';
export * from './types';
export * from './widgets';
export * from './lib/routers';
```
While really the entry point should be the same as index.es.ts, as otherwise the js bundle doesn't match the declaration.
This commit fixes that by no longer generating an entry point, and renaming index.es.d.ts to index.d.ts in the built files.
In the same commit I also move the declaration-related configuration files to the subfolder to make the root a little cleaner
0 commit comments