Skip to content

Commit

Permalink
Add vscode config to source (#18)
Browse files Browse the repository at this point in the history
* Add vscode config to source

* Add jest to reccommended plugins

---------

Co-authored-by: Christopher Graney-Ward <[email protected]>
  • Loading branch information
sisygoboom and Christopher Graney-Ward authored May 22, 2024
1 parent 920da52 commit 2f8436b
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ logs
dist

.env*
.vscode
data
.DS_Store
10 changes: 10 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"recommendations": [
"eamodio.gitlens",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"mikestead.dotenv",
"formulahendry.auto-rename-tag",
"orta.vscode-jest"
]
}
15 changes: 15 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach to Docker",
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/usr/app",
"skipFiles": ["<node_internals>/**"]
}
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"typescript.tsdk": "node_modules/typescript/lib"
}
15 changes: 15 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach to Docker",
"port": 9229,
"address": "localhost",
"localRoot": "${workspaceFolder}",
"remoteRoot": "/usr/app",
"skipFiles": ["<node_internals>/**"]
}
]
}

0 comments on commit 2f8436b

Please sign in to comment.