vscode-typescript-exportallmodules
vscode-typescript-exportallmodules copied to clipboard
VSCode extension which generates an `index.ts`barrel file with all the module exports from the current directory
Export all the images in a folder for vite and bundlers.
I need to be able to automatically generate indexes for every subfolder in a directory, but not generate an index for that directory itself. The pattern I am trying to...
Currently (v2.7.0), when an index generates, it contains a second new-line at the end of the file: ```ts export * from './a'; export * from './b'; ``` This drives my...
Hey, thanks for the extension! Very useful, though I was trying out Deno and it requires specifiers to include the filename extension, so I added an option `config.keepExtensions: boolean` to...
Would be great to support a shortcut key which generates a barrel for the currently selected file / folder in explorer view. Might be able to help contribute something if...
For example, for `.vue` files, we allow exporting in this way `export { default as Component } from 'Component.vue'`, it may look like this in the configuration ```js { '*.vue':...
There's no problem generating /src/Components/index.ts for any /src/Components/x.tsx. I can't figure out the proper import statements in /src/App.tsx. Should we use `import *` (no-no per other tickets here) ? Should...
Snyk has created this PR to upgrade date-fns from 2.28.0 to 2.29.1.  :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more...
It would be nice if files with `/^export default/` exported that member as `export { default as ${fileWithoutExtension} } from './${fileWithoutExtension}'`.