## 1.124.0

This commit is contained in:
2025-06-06 14:37:45 -07:00
parent d87502a95e
commit 2147da203a
26 changed files with 1870 additions and 9301 deletions

View File

@ -3,27 +3,28 @@
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/extension.ts",
"outFiles": [
"${workspaceFolder}/out/**/*.js"
]
}
]
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"preLaunchTask": "npm: webpack",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceFolder}/src/extension.ts",
"outFiles": [
"${workspaceFolder}/out/**/*.js"
]
}
]
}

View File

@ -1,63 +1,63 @@
{
"tasks": [
{
"type": "npm",
"script": "tsc-build",
"group": "build",
"problemMatcher": [],
"label": "npm: tsc-build",
"detail": "tsc"
},
{
"type": "npm",
"script": "tsc-clean",
"problemMatcher": [],
"label": "npm: tsc-clean",
"detail": "tsc --build --clean"
},
{
"type": "npm",
"script": "vscode:package",
"problemMatcher": [],
"label": "npm: vscode:package",
"detail": "node node_modules/@vscode/vsce/vsce package"
},
{
"type": "npm",
"script": "vscode:login",
"problemMatcher": [],
"label": "npm: vscode:login",
"detail": "node node_modules/@vscode/vsce/vsce login Infineon-Technologies-AG-Mesa-FI"
},
{
"type": "npm",
"script": "vscode:ls-publishers",
"problemMatcher": [],
"label": "npm: vscode:ls-publishers",
"detail": "node node_modules/@vscode/vsce/vsce ls-publishers"
},
{
"type": "npm",
"script": "vscode:publish",
"problemMatcher": [],
"label": "npm: vscode:publish",
"detail": "node node_modules/@vscode/vsce/vsce publish"
},
{
"type": "npm",
"script": "watch",
"group": "build",
"problemMatcher": [],
"label": "npm: watch",
"detail": "concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\""
},
{
"type": "npm",
"script": "webpack",
"problemMatcher": [],
"label": "npm: webpack",
"detail": "webpack --config ./build/node-extension.webpack.config.js"
}
],
"version": "2.0.0"
"tasks": [
{
"type": "npm",
"script": "tsc-build",
"group": "build",
"problemMatcher": [],
"label": "npm: tsc-build",
"detail": "tsc"
},
{
"type": "npm",
"script": "tsc-clean",
"problemMatcher": [],
"label": "npm: tsc-clean",
"detail": "tsc --build --clean"
},
{
"type": "npm",
"script": "vscode:package",
"problemMatcher": [],
"label": "npm: vscode:package",
"detail": "node node_modules/@vscode/vsce/vsce package"
},
{
"type": "npm",
"script": "vscode:login",
"problemMatcher": [],
"label": "npm: vscode:login",
"detail": "node node_modules/@vscode/vsce/vsce login Infineon-Technologies-AG-Mesa-FI"
},
{
"type": "npm",
"script": "vscode:ls-publishers",
"problemMatcher": [],
"label": "npm: vscode:ls-publishers",
"detail": "node node_modules/@vscode/vsce/vsce ls-publishers"
},
{
"type": "npm",
"script": "vscode:publish",
"problemMatcher": [],
"label": "npm: vscode:publish",
"detail": "node node_modules/@vscode/vsce/vsce publish"
},
{
"type": "npm",
"script": "watch",
"group": "build",
"problemMatcher": [],
"label": "npm: watch",
"detail": "concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\""
},
{
"type": "npm",
"script": "webpack",
"problemMatcher": [],
"label": "npm: webpack",
"detail": "webpack --config ./build/node-extension.webpack.config.js"
}
],
"version": "2.0.0"
}