I thought it would be good to have `ms-playwright.playwright` in `.vscode/extensions.json` by default when I choose Playwright as e2e solution. # What I get 1. `npm init vue@latest` 2. `Add an End-to-End Testing Solution? › Playwright` 3. `.vscode/extensions.json` not containing `"ms-playwright.playwright"` ```json { "recommendations": [ "Vue.volar", "Vue.vscode-typescript-vue-plugin" ] } ``` # What I want 1. `npm init vue@latest` 2. `Add an End-to-End Testing Solution? › Playwright` 3. `"ms-playwright.playwright"` in `.vscode/extensions.json` ```json { "recommendations": [ "Vue.volar", "Vue.vscode-typescript-vue-plugin", "ms-playwright.playwright" ] } ```