Skip to content

Instantly share code, notes, and snippets.

@g3tr1ght
Created September 21, 2021 15:50
Show Gist options
  • Select an option

  • Save g3tr1ght/722f757c0052795eb520f5ffb6c716b4 to your computer and use it in GitHub Desktop.

Select an option

Save g3tr1ght/722f757c0052795eb520f5ffb6c716b4 to your computer and use it in GitHub Desktop.
Sample webpack config which produces ES6 modules. See https://webpack.js.org/configuration/output/#outputlibrarytarget for more details
{
entry: './src/module.js',
output: {
filename: 'module.js',
path: path.resolve(__dirname, 'dist'),
libraryTarget: 'module'
},
experiments: {
outputModule: true,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment