chore: Add vscode devcontainer

This commit is contained in:
peaceiris
2020-06-20 11:38:56 +09:00
parent 7160613349
commit 3e33579947
5 changed files with 64 additions and 3 deletions

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

@@ -0,0 +1,15 @@
{
// 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.1.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Node (Integrated Terminal)",
"program": "${workspaceFolder}/src/index.ts",
"console": "integratedTerminal"
}
]
}