mirror of
https://github.com/scratchfoundation/scratch-webpack-configuration.git
synced 2025-04-03 08:31:31 -04:00
feat: support .cjs, .mjs, and their JSX friends
This commit is contained in:
parent
edb003a62e
commit
0350e5ddef
1 changed files with 16 additions and 1 deletions
|
@ -62,9 +62,24 @@ class ScratchWebpackConfigBuilder {
|
|||
type: 'umd2'
|
||||
}
|
||||
},
|
||||
resolve: {
|
||||
extensions: [
|
||||
'.mjs',
|
||||
'.cjs',
|
||||
...(
|
||||
enableReact ? [
|
||||
'.mjsx',
|
||||
'.cjsx',
|
||||
'.jsx'
|
||||
] : []
|
||||
),
|
||||
// defaults ('.js', '.json', etc.)
|
||||
'...'],
|
||||
modules: [this._srcPath, 'node_modules']
|
||||
},
|
||||
module: {
|
||||
rules: [{
|
||||
test: enableReact ? /\.jsx?$/ : /\.js$/,
|
||||
test: enableReact ? /\.[cm]?jsx?$/ : /\.[cm]?js$/,
|
||||
loader: 'babel-loader',
|
||||
options: {
|
||||
presets: [
|
||||
|
|
Loading…
Add table
Reference in a new issue