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
Pretty minor, but when using "module": "es6" in bsconfig.json, the main BuckleScript file that is consumed from the .re.js files is still being imported using require:
// $FlowExpectedError: Reason checked type sufficientlyconstDemoBS=require('./Demo.bs');
The expected behavior would be that these imports also comply with the module config value.
Pretty minor, but when using
"module": "es6"inbsconfig.json, the main BuckleScript file that is consumed from the.re.jsfiles is still being imported usingrequire:The expected behavior would be that these imports also comply with the
moduleconfig value.