创建工程

This commit is contained in:
2026-06-08 17:56:41 +08:00
commit f66e9959e5
14 changed files with 2253 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
// 调试时打开 A2288 工程目录
"C:\\Users\\wuwen\\Documents\\prj\\A2288\\2288_test"
],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "${defaultBuildTask}"
}
]
}
+27
View File
@@ -0,0 +1,27 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "silent"
},
"problemMatcher": "$tsc"
},
{
"type": "npm",
"script": "watch",
"group": "build",
"presentation": {
"reveal": "silent"
},
"isBackground": true,
"problemMatcher": "$tsc-watch"
}
]
}