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
I am unsure how this would be done unless you would do a first pass checking for only the import map configuration before running the configuration file as a whole. This would however make it so the import map would be static and only accept string literals (unless you do some serious analysis of the code before running).
It's nice to have all project dependencies listed in import map. (Maybe?)
However, import map is more appropriate for dependencies that are repetitive, don't take part in initial bootstrapping and are more closer to application's code than to configuration. For example, if I want to comply with 12-Factor App methodology and load .env, it's simple as:
So everything that's more closer to the source part (and not configuration), relies within import_map.json, but initial configuration remains where it should be.
Is your feature request related to a problem? Please describe.
Hi, issues again. After I set
importmap: 'import_map.json'
indeno.config.ts
, it worked well to load package fromimport_maps.json
.But base on the idea: use
import_map
as much as possible, I tried to code like this:It got error above, what can I do?
Describe the solution you'd like
Support like this in
denon.config.ts
:The text was updated successfully, but these errors were encountered: