RTVision / esbuild-dynamic-import

Plugin for transform dynamic imports in esbuild
17 stars 5 forks source link

Handle dynamic imports with no file extension #9

Open julian-schneider opened 1 year ago

julian-schneider commented 1 year ago

For every .js file in the import destination directory, this code adds a copy of the key that omits the file extension, and which will point to the same module in the final product. Note that to use the plugin for import statements without file extensions at all, the transformExtensions option needs to include an empty string.

Addresses #7.

Maybe it should be considered to add an option that enables this behavior. If the behavior should apply to file extensions other than .js, the option could include a list of file extensions that may be omitted, similar to transformExtensions.