supertokens / supertokens-website

Frontend SDK for SuperTokens - for session management + automatically refreshing sessions
https://supertokens.com
Other
54 stars 13 forks source link

fixes ts issue with default imports #70

Closed bhumilsarvaiya closed 3 years ago

bhumilsarvaiya commented 3 years ago

Summary of change

imports like:

import SuperTokens from 'supertokens-website';

throws the error export * from "./lib/build" doesn't re-export the default export . So for all the user facing *.d.ts files, added:

import * as _default from "...";
export default _default;

Related issues

Test Plan

Documentation changes

Checklist for important updates