Initial commit

This commit is contained in:
2020-05-17 14:36:52 +08:00
commit 8a10db1037
9 changed files with 146 additions and 0 deletions

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

@@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "启动程序",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/dist/binary.js"
}
]
}