We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d431dc6 commit 008d1e8Copy full SHA for 008d1e8
README.md
@@ -98,12 +98,12 @@ Options:
98
with another allowed extension.
99
[array] [default: ["js"]]
100
--implicitDefault, -m Uses defaults as implicit instead of named.
101
- export { default as thing } from './thing.js'
102
- becomes export thing from './thing.js'
+ export { default as foo } from './foo.js'
+ becomes export foo from './foo.js'
103
[boolean] [default: false]
104
--wildcardFolders, -w Imports all children from directory as wildcard.
105
- export things from './things'
106
- becomes export * as things from './thing.js'
+ export foo from './foo'
+ becomes export * as foo from './foo'
107
108
109
Examples:
0 commit comments