## 1.124.0

This commit is contained in:
2025-06-06 15:00:55 -07:00
commit 20a7c2ee08
53 changed files with 5191 additions and 0 deletions

View File

@ -0,0 +1,5 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": ["dbaeumer.vscode-eslint", "amodio.tsl-problem-matcher"]
}

30
type-script-helper/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,30 @@
// A launch configuration that compiles the extension and then opens it 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": "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"
]
}
]
}

11
type-script-helper/.vscode/mklink.md vendored Normal file
View File

@ -0,0 +1,11 @@
---
type: "note"
created: "2023-10-20T03:53:13.742Z"
updated: "2023-10-20T04:00:37.259Z"
---
# mklink
```bash
mklink /J "L:\Git\YO-VSCode\type-script-helper\net8.0\win-x64\publish" "L:\DevOps\Mesa_FI\File-Folder-Helper\bin\Release\net8.0\win-x64\publish"
```

View File

@ -0,0 +1,29 @@
{
"[markdown]": {
"editor.wordWrap": "off"
},
"cSpell.words": [
"Infineon",
"initialise",
"Kanban",
"Phares",
"signalr",
"VSIX",
"Weightest",
"WSJF"
],
"files.eol": "\n",
"files.exclude": {
"**/dist": false,
"**/node_modules": true,
"**/out": false
},
"files.watcherExclude": {
"**/node_modules": true
},
"explorer.sortOrder": "default",
"search.exclude": {
"**/dist": true,
"**/out": true
}
}

63
type-script-helper/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +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"
}