initialize project with VSCode configuration

This commit is contained in:
2025-10-31 00:24:29 +00:00
parent a6ddad9d3c
commit 7a4bea8d22
3 changed files with 21 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}
+11
View File
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}
+6
View File
@@ -0,0 +1,6 @@
{
"editor.codeActionsOnSave": {
"source.organizeImports.biome": "explicit",
"source.fixAll.biome": "explicit"
}
}