feat(vscode): enable Deno support and configure JSON formatting

- Enables Deno integration in VS Code settings
- Sets the default JSON formatter to Deno's extension
- Activates format-on-save for improved workflow
This commit is contained in:
2025-05-28 18:14:38 +02:00
parent 9ad407e531
commit c02da70902

View File

@@ -12,5 +12,10 @@
"/src/utils",
"/src/types",
"/src/i18n"
]
],
"deno.enable": true,
"[json]": {
"editor.defaultFormatter": "denoland.vscode-deno"
},
"editor.formatOnSave": true
}