Skip to content

Commit b0d906f

Browse files
committed
2 parents 1a6b924 + c50dd65 commit b0d906f

File tree

2 files changed

+44
-22
lines changed

2 files changed

+44
-22
lines changed

.devcontainer/.devcontainer.json

-22
This file was deleted.

.devcontainer/devcontainer.json

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"name": "My Codespace",
3+
"image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:0-20",
4+
"customizations": {
5+
"vscode": {
6+
"settings": {
7+
"terminal.integrated.shell.linux": "/bin/bash",
8+
"editor.formatOnSave": true,
9+
"editor.tabSize": 2
10+
},
11+
"extensions": [
12+
"eamodio.gitlens",
13+
"codeandstuff.package-json-upgrade",
14+
"dbaeumer.vscode-eslint",
15+
"github.copilot",
16+
"github.copilot-chat",
17+
"humao.rest-client",
18+
"esbenp.prettier-vscode",
19+
"streetsidesoftware.code-spell-checker",
20+
"dzannotti.vscode-babel-coloring",
21+
"aaron-bond.better-comments",
22+
"pranaygp.vscode-css-peek",
23+
"ms-azuretools.vscode-docker",
24+
"editorconfig.editorconfig",
25+
"seatonjiang.gitmoji-vscode",
26+
"ecmel.vscode-html-css",
27+
"antfu.iconify",
28+
"ritwickdey.LiveServer",
29+
"ms-vsliveshare.vsliveshare",
30+
"christian-kohler.npm-intellisense",
31+
"ionutvmi.path-autocomplete",
32+
"yoavbls.pretty-ts-errors",
33+
"msjsdiag.vscode-react-native",
34+
"urbantrout.refactor-css",
35+
"simontest.simonte"
36+
]
37+
}
38+
},
39+
"forwardPorts": [3000, 5000],
40+
"postCreateCommand": "npm install -g typescript nodemon && npm install && code --list-extensions",
41+
"mounts": [
42+
"source=/path/to/local/directory,target=/path/in/container,type=bind"
43+
]
44+
}

0 commit comments

Comments
 (0)