Create devcontainer.json
It contains the Dev Container configuration, as described here: https://code.visualstudio.com/docs/devcontainers/create-dev-container
This commit is contained in:
parent
d22abe300b
commit
30fffeaf4c
1 changed files with 14 additions and 0 deletions
14
.devcontainer/devcontainer.json
Normal file
14
.devcontainer/devcontainer.json
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:18",
|
||||||
|
"forwardPorts": [8080],
|
||||||
|
|
||||||
|
"customizations": {
|
||||||
|
"vscode": {
|
||||||
|
"extensions": [
|
||||||
|
"ms-vscode.vscode-typescript-next",
|
||||||
|
"dbaeumer.vscode-eslint",
|
||||||
|
"mutantdino.resourcemonitor"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue