🍔 Added files

This commit is contained in:
2021-05-08 23:20:56 -07:00
commit 94bd9bd1a6
24 changed files with 23736 additions and 0 deletions

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

@@ -0,0 +1,38 @@
{
// Use IntelliSense to learn about possible Node.js debug 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": "Debug",
"program": "${workspaceRoot}/node_modules/moleculer/bin/moleculer-runner.js",
"sourceMaps": true,
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register"
],
"cwd": "${workspaceRoot}",
"args": [
"services/**/*.service.ts"
]
},
{
"type": "node",
"request": "launch",
"name": "Jest",
"program": "${workspaceRoot}/node_modules/jest-cli/bin/jest.js",
"args": [
"--runInBand"
],
"cwd": "${workspaceRoot}",
"runtimeArgs": [
"--inspect-brk",
"--nolazy"
]
}
]
}