- Updated videos.html to enhance readability and maintainability. - Refactored webpack.config.js for better organization and clarity. - Cleaned up TypeScript configuration files (tsconfig.app.json, tsconfig.json, tsconfig.spec.json) for consistency in formatting. - Adjusted docker-compose.yaml for improved formatting and readability.
22 lines
535 B
JSON
22 lines
535 B
JSON
{
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "ng serve",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"preLaunchTask": "npm: start",
|
|
"url": "http://localhost:4200/",
|
|
"webRoot": "${workspaceFolder}/Web",
|
|
},
|
|
{
|
|
"name": "ng test",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"preLaunchTask": "npm: test",
|
|
"url": "http://localhost:9876/debug.html"
|
|
}
|
|
]
|
|
}
|