Calendar updates

This commit is contained in:
2024-02-16 14:01:18 -05:00
parent 122d417026
commit be77845c84
6 changed files with 79 additions and 36 deletions

24
Calendar/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,24 @@
{
// 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": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/Service/src/app.ts",
"env": {
"PORT": "8080"
},
"preLaunchTask": "npm: build - Service",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}

14
Calendar/.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"path": "Service",
"group": "build",
"problemMatcher": [],
"label": "npm: build - Service",
"detail": "tsc -p ./"
}
]
}