Skip to content

Commit 05f8339

Browse files
committed
container config done
1 parent 056055e commit 05f8339

1 file changed

Lines changed: 18 additions & 3 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"name": "Node.js",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-22-bookworm"
6+
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-18",
77

88
// Features to add to the dev container. More info: https://containers.dev/features.
99
// "features": {},
@@ -15,8 +15,23 @@
1515
// "postCreateCommand": "yarn install",
1616

1717
// Configure tool-specific properties.
18-
// "customizations": {},
18+
"customizations": {
19+
"vscode": {
20+
"extensions": [
21+
"esbenp.prettier-vscode",
22+
"vscode-icons-team.vscode-icons",
23+
"wayou.vscode-todo-highlight"
24+
],
25+
"settings": {
26+
"editor.fontSize": 32,
27+
"terminal.integrated.fontSize": 24,
28+
"editor.wordWrap": "on"
29+
}
30+
31+
}
32+
33+
}
1934

2035
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
2136
// "remoteUser": "root"
22-
}
37+
}

0 commit comments

Comments
 (0)