mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
445 B
10 lines
445 B
module.exports = {
|
|
description: 'warns if default and named exports are used in auto mode',
|
|
warnings: [
|
|
{
|
|
code: 'MIXED_EXPORTS',
|
|
message: `Using named and default exports together. Consumers of your bundle will have to use bundle['default'] to access the default export, which may not be what you want. Use \`exports: 'named'\` to disable this warning`,
|
|
url: `https://github.com/rollup/rollup/wiki/JavaScript-API#exports`
|
|
}
|
|
]
|
|
};
|
|
|