-
Notifications
You must be signed in to change notification settings - Fork 710
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
What problem does this feature solve?
I have some TSX files that will be rendered as a webview in a VS Code extension, currently it's one .tsx per view.
In esbuild, I could just specify a glob pattern such as webview/**/*.tsx which would automatically build them and output them in the structure they were previously in, but with Rolldown there seems to be no equivalent.
What does the proposed API look like?
Probably something like this can be added to the config shape:
import { defineConfig } from 'rolldown';
export default defineConfig({
input: 'webview/**/*.tsx',
output: {
dir: 'out/webview',
}
});I have no Rust knowledge so I wouldn't know how to implement it, sorry 😅
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation