webpack/test/configCases/defer-import/async-in-graph/webpack.config.js

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
}
};