We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In my React Native project, I tried to import rxjs with this plugin.
Here's my babel.config.js
babel.config.js
[ 'import', { libraryName: "rxjs", camel2DashComponentName: false, customName: (name, file) => { if (['debounceTime', 'throttleTime'].includes(name)) { return `rxjs/internal/operators/${name}`; } return `rxjs/internal/${name}`; } } ]
But I got problem that said TypeError: _Subject2.default is not a constructor.... And ideas?
TypeError: _Subject2.default is not a constructor...
p.s. I've tried to manually change the import statement, like:
import
// import {debounceTime} from 'rxjs'; import {debounceTime} from 'rxjs/internal/operators/debounceTime';
And it worked. So cleanly there was something wrong when I used this plugin.
The text was updated successfully, but these errors were encountered:
Have you tried setting transformToDefaultImport to false?
transformToDefaultImport
false
Sorry, something went wrong.
No branches or pull requests
In my React Native project, I tried to import rxjs with this plugin.
Here's my
babel.config.js
But I got problem that said
TypeError: _Subject2.default is not a constructor...
. And ideas?p.s.
I've tried to manually change the
import
statement, like:And it worked. So cleanly there was something wrong when I used this plugin.
The text was updated successfully, but these errors were encountered: