mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Use pnpm instead of yarn as the package manager and interaction tool for the repo PR Close #62924
11 lines
355 B
JSON
11 lines
355 B
JSON
// Reference: https://code.visualstudio.com/docs/remote/containers#_devcontainerjson-reference
|
|
{
|
|
"name": "Angular dev container",
|
|
"dockerFile": "Dockerfile",
|
|
"appPort": [4000, 4200, 4433, 5000, 8080, 9876],
|
|
"postCreateCommand": "pnpm install",
|
|
"extensions": [
|
|
"devondcarew.bazel-code",
|
|
"ms-vscode.vscode-typescript-tslint-plugin"
|
|
],
|
|
}
|