This commit is contained in:
Vick Scarlet
2021-08-15 11:01:01 +08:00
commit cc72b5a6b3
10 changed files with 730 additions and 0 deletions

26
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "test",
"program": "${workspaceFolder}/app.js",
"skipFiles": [
"<node_internals>/**"
]
},
{
"type": "node",
"request": "launch",
"name": "convert",
"program": "${workspaceFolder}/util/xlsxTransform.js",
"skipFiles": [
"<node_internals>/**"
]
}
]
}