webpack/test/configCases/defer-import/comment-error/webpack.config.js

14 lines
285 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
}
},
experiments: {
topLevelAwait: true,
deferImport: true
}
};