Amritanshu
5c7985e392
Moved to sqlalchemy 2.0 Added type checking as much as possible Updated angular to 15 Moved from Angular flex layout to tailwind css Started developing on vscode with devcontainers
46 lines
1009 B
JSON
46 lines
1009 B
JSON
{
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"type": "npm",
|
|
"script": "start",
|
|
"isBackground": true,
|
|
"options": {
|
|
"cwd": "${workspaceFolder}/bookie"
|
|
},
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"pattern": "$tsc",
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": {
|
|
"regexp": "(.*?)"
|
|
},
|
|
"endsPattern": {
|
|
"regexp": "bundle generation complete"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "npm",
|
|
"script": "test",
|
|
"isBackground": true,
|
|
"problemMatcher": {
|
|
"owner": "typescript",
|
|
"pattern": "$tsc",
|
|
"background": {
|
|
"activeOnStart": true,
|
|
"beginsPattern": {
|
|
"regexp": "(.*?)"
|
|
},
|
|
"endsPattern": {
|
|
"regexp": "bundle generation complete"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|