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
When using exposed functions from the config file in your target .ts files, you get all of the typescript typings but the run process will fail. This is because the typescript compiler will bundle code from config.js that is only meant to run in the node context, not in a browser context.
We need to either ignore imports from the config file, or introduce an annotation that allows the user to ignore certain imports from begin compiled and run in the browser context.
The text was updated successfully, but these errors were encountered:
When using exposed functions from the config file in your target .ts files, you get all of the typescript typings but the run process will fail. This is because the typescript compiler will bundle code from
config.js
that is only meant to run in the node context, not in a browser context.We need to either ignore imports from the config file, or introduce an annotation that allows the user to ignore certain imports from begin compiled and run in the browser context.
The text was updated successfully, but these errors were encountered: