Added vscode syntax highlighting under /tools

This commit is contained in:
2022-11-07 09:44:26 +00:00
parent a55338d8e3
commit 0c8e036de8
8 changed files with 171 additions and 2 deletions

View File

@@ -0,0 +1,17 @@
// A launch configuration that launches the extension inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
]
}
]
}