This commit is contained in:
Hugo Falcao
2022-06-20 01:49:33 -03:00
parent 2ff921ee24
commit ac026dd966
10 changed files with 239 additions and 61 deletions

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

@@ -0,0 +1,20 @@
{
// 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.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\src\\services\\GetCoordinatesByAddress.ts",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}