Lach
Lach
Should also check typeof of exports then
Implemented the updated solution: https://github.com/denoland/fresh/pull/3494/commits/3e846db9f1b2287f10ac75e71e6844fec2e44a3e It is included in the same PR.
Note that in JS (and in jrsonnet) it is not `maybeNullObj?['someField']`, but `maybeNullObj?.['someField']` for bracket index expression
For imports to work, you need to call jrsonnet_apply_static_import_callback() once. This method sets the import callback, which will use JS to read the files. Without it, OS file importer will...
Why do we need to include everything by default in ssr bundle? Wouldn't it be better for SSR to only include current project, leaving transformations of everything else to Deno?...
Was investigating similar issue for other package, and while the problem described in main post is easily solvable by adding __esModule export unconditionally for transpiled module (Because mongodb and some...