VSCode Dev Container

This commit is contained in:
2023-07-23 08:12:42 +05:30
parent 22cac61761
commit e2b8d02063
5 changed files with 99 additions and 7 deletions

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
"recommendations": ["angular.ng-template"]
}

12
.vscode/launch.json vendored
View File

@ -5,22 +5,20 @@
"version": "0.2.0",
"configurations": [
{
"command": "npm start",
"name": "ng serve",
"type": "chrome",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}/overlord",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/"
},
{
"name": "Python: FastAPI",
"type": "python",
"request": "launch",
"module": "brewman",
"args": [],
"cwd": "${workspaceFolder}/brewman",
"args": [
],
"jinja": true,
"justMyCode": true,
"justMyCode": true
}
]
}

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

@ -0,0 +1,46 @@
{
// 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}/overlord"
},
"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"
}
}
}
}
]
}