Microsoft Extensions marketplace
Microsoft All Extensions
Github All Extensions
Extensions
- Prettier - Code formatter : Formate the code
- Live Server : Runing the html & CSS code with auto reload with live server
- Import Cost : Show the size of the package
- ESLint : Show the error in the code
- GitLens — Git supercharged : Git supercharged show the git commit and git blame
- vscode-icons : Icons for the file
- vscode copilot : AI for the code
- vscode Thuder client : API testing
- ES& + React/Redux/React-Native snippets : Snippets for the react
- Auto Rename Tag : Rename the tag
- Code Spell Checker : Spell checker
- npm : npm
- npm Intellisense : npm Intellisense
- Path Intellisense : Path Intellisense
- Quokka.js : Quokka.js is a rapid prototyping playground for JavaScript and TypeScript.
- Microsoft Edge Tools for VS Code : Microsoft Edge Tools for VS Code
- GitHub Pull Requests and Issues : GitHub Pull Requests and Issues
- JavaScript Snippet Pack : JavaScript Snippet Pack
VS code Setting
{
"window.zoomLevel": 1,
"files.autoSave": "afterDelay",
"workbench.iconTheme": "vscode-icons",
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"compilerOptions": {
"module": "CommonJS",
"target": "ES6"
},
"exclude": [
"node_modules"
],
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[mdx]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.confirmDelete": false,
"javascript.updateImportsOnFileMove.enabled": "always",
"[css]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"explorer.confirmDragAndDrop": false,
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": false,
"scminput": false
},
"workbench.colorTheme": "Visual Studio Dark",
"[typescriptreact]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
}