This commit is contained in:
Boris D
2025-09-22 18:35:02 +03:00
parent 51f8b0d773
commit fbbbd61838
23 changed files with 282 additions and 67 deletions

32
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run case1 test",
"type": "shell",
"command": "npx ts-node tests/base/case1.ts",
"args": [],
"isBackground": false,
"problemMatcher": [],
"group": "build"
},
{
"label": "Generate join table migration",
"type": "shell",
"command": "npm run migration:generate -- src/migrations/query-modules-join",
"args": [],
"isBackground": false,
"problemMatcher": [],
"group": "build"
},
{
"label": "Run DB migrations",
"type": "shell",
"command": "npm run migration:run",
"args": [],
"isBackground": false,
"problemMatcher": [],
"group": "build"
}
]
}