vscode-typescript-exportallmodules icon indicating copy to clipboard operation
vscode-typescript-exportallmodules copied to clipboard

VSCode extension which generates an `index.ts`barrel file with all the module exports from the current directory

Results 14 vscode-typescript-exportallmodules issues
Sort by recently updated
recently updated
newest added

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...

enhancement
help wanted

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...

bug

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...

enhancement

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':...

enhancement
help wanted

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. ![merge advice](https://app.snyk.io/badges/merge-advice/?package_manager=npm&package_name=date-fns&from_version=2.28.0&to_version=2.29.1&pr_id=26df3bfa-0f4d-413d-9db7-9876d1286bf1&visibility=true&has_feature_flag=false) :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}'`.

enhancement
help wanted