Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Jagoda11 committed Jul 25, 2024
2 parents 1a6b924 + c50dd65 commit b0d906f
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 22 deletions.
22 changes: 0 additions & 22 deletions .devcontainer/.devcontainer.json

This file was deleted.

44 changes: 44 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"name": "My Codespace",
"image": "mcr.microsoft.com/vscode/devcontainers/typescript-node:0-20",
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.shell.linux": "/bin/bash",
"editor.formatOnSave": true,
"editor.tabSize": 2
},
"extensions": [
"eamodio.gitlens",
"codeandstuff.package-json-upgrade",
"dbaeumer.vscode-eslint",
"github.copilot",
"github.copilot-chat",
"humao.rest-client",
"esbenp.prettier-vscode",
"streetsidesoftware.code-spell-checker",
"dzannotti.vscode-babel-coloring",
"aaron-bond.better-comments",
"pranaygp.vscode-css-peek",
"ms-azuretools.vscode-docker",
"editorconfig.editorconfig",
"seatonjiang.gitmoji-vscode",
"ecmel.vscode-html-css",
"antfu.iconify",
"ritwickdey.LiveServer",
"ms-vsliveshare.vsliveshare",
"christian-kohler.npm-intellisense",
"ionutvmi.path-autocomplete",
"yoavbls.pretty-ts-errors",
"msjsdiag.vscode-react-native",
"urbantrout.refactor-css",
"simontest.simonte"
]
}
},
"forwardPorts": [3000, 5000],
"postCreateCommand": "npm install -g typescript nodemon && npm install && code --list-extensions",
"mounts": [
"source=/path/to/local/directory,target=/path/in/container,type=bind"
]
}

0 comments on commit b0d906f

Please sign in to comment.