mirror of https://github.com/webpack/webpack.git
15 lines
300 B
JavaScript
15 lines
300 B
JavaScript
/** @type {import("../../../../").Configuration} */
|
|
module.exports = {
|
|
output: {
|
|
// TODO: not sure why CI set optionalChaining to true on Node 10 and fails the test
|
|
environment: {
|
|
optionalChaining: false
|
|
}
|
|
},
|
|
mode: "none",
|
|
experiments: {
|
|
topLevelAwait: true,
|
|
deferImport: true
|
|
}
|
|
};
|