Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
{
"name": "TypeScript Website codespace",
"dockerFile": "Dockerfile",
"features": {
"ghcr.io/devcontainers/features/sshd:1": {}
},

// Pre-fetch packages
"updateContentCommand": "pnpm fetch",
// Might as well get started on this right away
"postCreateCommand": "pnpm install && pnpm bootstrap",
// Don't block editor startup on fetching packages
"waitFor": "onCreateCommand",

// Set *default* container specific settings.json values on container create.
"settings": {
Expand Down
Loading