UNPKG

276 BJavaScriptView Raw
1const nodeExternals = require('webpack-node-externals')
2
3module.exports = ({ format, excludeNodeModules }) => {
4 return format === 'cjs' || excludeNodeModules
5 ? [
6 nodeExternals({
7 whitelist: [/\.(?!(?:jsx?|json)$).{1,5}$/i]
8 })
9 ]
10 : []
11}