mirror of https://github.com/webpack/webpack.git
25 lines
467 B
JavaScript
25 lines
467 B
JavaScript
|
/** @type {import("../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
devtool: false,
|
||
|
mode: "development",
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
exclude: /node_modules/,
|
||
|
test: /\.[cm]?js$/,
|
||
|
use: {
|
||
|
loader: "babel-loader",
|
||
|
options: {
|
||
|
presets: [["@babel/preset-react", { runtime: "automatic" }]],
|
||
|
sourceType: "unambiguous"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
optimization: {
|
||
|
runtimeChunk: "single",
|
||
|
splitChunks: { chunks: "all", name: "common" }
|
||
|
}
|
||
|
};
|