chore: configure vscode-jest extension (#4962)

This commit is contained in:
Christian Fehmer 2024-01-24 20:44:43 +01:00 committed by GitHub
parent 9007039ac3
commit 774057d262
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 27 additions and 0 deletions

1
.gitignore vendored
View file

@ -71,6 +71,7 @@ node_modules_bak/
#vs code
.vscode
*.code-workspace
!monkeytype.code-workspace
.idea

26
monkeytype.code-workspace Normal file
View file

@ -0,0 +1,26 @@
{
"folders": [
{
"name":"backend",
"path":"backend",
},
{
"name":"frontend",
"path":"frontend",
},
{
"name":"root",
"path": "./"
}
],
"settings": {
"files.exclude": {
"frontend": true,
"backend": true,
},
"jest.disabledWorkspaceFolders": [
"root"
]
}
}