-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Closed as not planned
Description
Description
As a developer starting to use Vite, I would like to have create-vite take advantage of the fact two vscode add-ins have been written that can speed and simplify development.
Suggested solution
This is easy. Templates should simply generate a JSON file .vscode/extensions.json with content like:
{
"recommendations": [
"antfu.vite",
"antfu.browse-lite"
]
}From there, vscode does the rest, asking if the developer wants to use recommended extensions to the IDE.
Alternative
Is there some sort of template inheritence mechanism so this doesn't need to go in each template?
Additional context
I note that the template-svelte & template-svelte-ts both already include a, vscode/extensions.json file, but it includes for a different, svelte-specific extension.
Validations
- Follow our Code of Conduct
- Read the Contributing Guidelines.
- Read the docs.
- Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
Reactions are currently unavailable