webpack/test/cases/mjs/cjs-import-default/errors.js

21 lines
824 B
JavaScript

module.exports = [
[
/Can't import the named export 'data' \(imported as 'data'\) from non EcmaScript module \(only default export is available\)/
],
[
/Can't import the named export 'data' \(imported as 'data'\) from non EcmaScript module \(only default export is available\)/
],
[
/Can't import the namespace object \(imported as 'star'\) from non EcmaScript module \(only default export is available\)/
],
[
/Can't import the namespace object \(imported as 'star'\) from non EcmaScript module \(only default export is available\)/
],
[
/Can't import the namespace object \(reexported as 'ns'\) from non EcmaScript module \(only default export is available\)/
],
[
/Can't import the named export 'data' \(reexported as 'data'\) from non EcmaScript module \(only default export is available\)/
]
];