-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
38 lines (38 loc) · 1.17 KB
/
devcontainer.json
File metadata and controls
38 lines (38 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "TeachingDev",
"image": "mcr.microsoft.com/devcontainers/typescript-node:24-bookworm",
"customizations": {
"vscode": {
"extensions": [
"pomdtr.excalidraw-editor",
"zhuangtongfa.Material-theme",
"mhutchie.git-graph",
"esbenp.prettier-vscode",
"dbaeumer.vscode-eslint",
"unifiedjs.vscode-mdx",
"motivesoft.vscode-uuid-generator",
"lukas-tr.materialdesignicons-intellisense"
],
"settings": {
"workbench.colorTheme": "One Dark Pro",
"extensions.ignoreRecommendations": true,
"git.autofetch": true,
"editor.tabSize": 4,
"[mdx]": {
"editor.defaultFormatter": "unifiedjs.vscode-mdx"
}
}
}
},
"remoteEnv": {
"OFFLINE_API": "true"
},
"postStartCommand": "yarn install",
"forwardPorts": [3000],
"features": {
"ghcr.io/devcontainers/features/node:1": {
"version": "24.13"
}
},
"runArgs": ["--network=host"]
}