Skip to content

Commit

Permalink
VSCode用のWS設定を追加
Browse files Browse the repository at this point in the history
  • Loading branch information
o-tr committed Oct 16, 2024
1 parent 4a1fae3 commit 9166933
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"recommendations": ["esbenp.prettier-vscode"]
}
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "依存関係のインストール",
"runtimeExecutable": "npm",
"runtimeArgs": ["install"]
},
{
"type": "node",
"request": "launch",
"name": "Docusaurusを起動",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start"]
}
]
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
}

0 comments on commit 9166933

Please sign in to comment.