Adjust VSCode settings with correct extensions and hiding generated folders

This commit is contained in:
Max Hoffmann 2023-09-27 18:20:43 -07:00
parent 2bc3799a95
commit 99b83e439e
No known key found for this signature in database
GPG Key ID: 3015B3271A63BCAE
2 changed files with 12 additions and 3 deletions

View File

@ -1,3 +1,7 @@
{
"recommendations": ["dbaeumer.vscode-eslint", "EditorConfig.editorconfig", "esbenp.prettier-vscode"]
"recommendations": [
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode"
]
}

View File

@ -2,11 +2,16 @@
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/node_modules": true
"**/node_modules": true,
".rollup.cache": true,
"coverage": true
},
"search.exclude": {
"**/node_modules": true,
"build": true
".rollup.cache": true,
"coverage": true,
"build": true,
"docs": true
},
"[typescript]": {
"editor.formatOnSave": false,