mirror of https://github.com/webpack/webpack.git
17 lines
308 B
JavaScript
17 lines
308 B
JavaScript
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
devtool: false,
|
||
|
mode: "development",
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.json$/,
|
||
|
resourceQuery: /JSONParse=true/,
|
||
|
type: "json",
|
||
|
generator: { JSONParse: true }
|
||
|
}
|
||
|
],
|
||
|
generator: { json: { JSONParse: false } }
|
||
|
}
|
||
|
};
|