add json configurations

This commit is contained in:
HorizonCode 2023-05-11 10:28:57 +02:00
parent 93f5bd30b9
commit e0b2739408
2 changed files with 24 additions and 0 deletions

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

@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"request": "launch",
"name": "test deno-http",
"type": "node",
"program": "${workspaceFolder}/example/test.ts",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "C:\\Users\\Admin\\.deno\\bin\\deno.EXE",
"runtimeArgs": [
"run",
"--unstable",
"--inspect-wait",
"--allow-all"
],
"attachSimplePort": 9229
}
]
}

4
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"deno.enable": true,
"deno.unstable": true
}