mirror of https://github.com/webpack/webpack.git
16 lines
217 B
JavaScript
16 lines
217 B
JavaScript
|
"use strict";
|
||
|
|
||
|
/** @type {import("../../../../").Configuration} */
|
||
|
module.exports = {
|
||
|
output: {
|
||
|
libraryTarget: "system"
|
||
|
},
|
||
|
externals: {
|
||
|
react: "react"
|
||
|
},
|
||
|
node: {
|
||
|
__dirname: false,
|
||
|
__filename: false
|
||
|
}
|
||
|
};
|