created a vscode workspace file for the repo

This commit is contained in:
Vitali Zaidman
2024-06-10 15:45:00 +01:00
parent f5af92d2c4
commit 0912d7437d
+28
View File
@@ -0,0 +1,28 @@
{
"folders": [
{
"path": "."
}
],
"extensions": {
"recommendations": [
"dbaeumer.vscode-eslint",
"editorconfig.editorconfig",
"esbenp.prettier-vscode",
"flowtype.flow-for-vscode"
],
},
"settings": {
"editor.formatOnSave": true,
"flow.pathToFlow": "${workspaceFolder}/node_modules/.bin/flow",
"javascript.validate.enable": false,
"search.useIgnoreFiles": true,
"search.exclude": {
"**/dist/**": true,
"**/build/**": true,
"**/out/**": true,
"*.map": true,
"*.log": true,
}
}
}