denoPlugins( config?: Partial<DenoPluginsConfig>,): [ importmap_plugin
: Plugin, http_plugin
: Plugin, jsr_plugin
: Plugin, npm_specifier_plugin
: Plugin,] Returns [
importmap_plugin: Plugin,
http_plugin: Plugin,
jsr_plugin: Plugin,
npm_specifier_plugin: Plugin,
]
creates an array esbuild plugins that can resolve imports in the same way deno can.
it is effectively a cumulation of the following three plugins (ordered from highest resolving priority to lowest):
http://
andhttps://
path-resolving and resource-fetching loader.jsr:
tohttps://jsr.io/
path-resolver.npm:
specifier prefixes.