mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
82cc576e6f
Use pnpm instead of yarn as the package manager and interaction tool for the repo PR Close #62924
12 lines
355 B
JSON
12 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"
|
|
],
|
|
}
|