-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
48 lines (45 loc) · 1.5 KB
/
devcontainer.json
File metadata and controls
48 lines (45 loc) · 1.5 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
39
40
41
42
43
44
45
46
47
48
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/ubuntu
{
"name": "Todo",
"image": "mcr.microsoft.com/devcontainers/base:noble",
"features": {
"ghcr.io/devcontainers/features/node:1": {
"nodeGypDependencies": true,
"version": "lts",
"pnpmVersion": "latest",
"nvmVersion": "latest"
}
},
"workspaceFolder": "/todo",
"workspaceMount": "source=${localWorkspaceFolder},target=${containerWorkspaceFolder},type=bind,consistency=cached",
"postCreateCommand": ".devcontainer/post-create.sh",
"customizations": {
"vscode": {
"extensions": [
"EditorConfig.EditorConfig@0.18.1",
"GitHub.vscode-github-actions@0.31.0",
"ms-vscode-remote.remote-containers@0.446.0",
"oxc.oxc-vscode@1.47.0",
"timonwong.shellcheck@0.38.8",
"TypeScriptTeam.native-preview@0.20260224.1",
"vitest.explorer@1.44.0"
],
"settings": {
"editor.defaultFormatter": "oxc.oxc-vscode",
"json.schemaDownload.trustedDomains": {
"https://docs.renovatebot.com/": true
},
"oxc.configPath": ".oxfmtrc.json",
"oxc.typeAware": true,
"typescript.experimental.useTsgo": true
}
}
}
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Configure tool-specific properties.
// "customizations": {},
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}