Follow up of:
v3 introduced named exports and deprecated the default one. In v4 we should be able to remove them.
Removing index.ts from the following match should make the default export prune easier:
|
files: [ |
|
"**/index.ts", // to be removed in next release (v4) when we are dropping default export |
|
"**/vitest.config.mts", |
|
"**/eslint.config.mjs", |
|
], |
|
rules: { |
|
"import-lite/no-default-export": "off", |
|
}, |
Follow up of:
v3introduced named exports and deprecated thedefaultone. In v4 we should be able to remove them.Removing
index.tsfrom the following match should make thedefaultexport prune easier:changesets/eslint.config.mjs
Lines 83 to 90 in 2c7c043