feat: Add Dev Container configuration for a consistent development environment.
This commit is contained in:
1
.devcontainer/Dockerfile
Normal file
1
.devcontainer/Dockerfile
Normal file
@@ -0,0 +1 @@
|
|||||||
|
FROM mcr.microsoft.com/devcontainers/javascript-node:22-bookworm
|
||||||
22
.devcontainer/devcontainer.json
Normal file
22
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
{
|
||||||
|
"name": "Horror Game Dev",
|
||||||
|
"build": {
|
||||||
|
"dockerfile": "Dockerfile"
|
||||||
|
},
|
||||||
|
"customizations": {
|
||||||
|
"vscode": {
|
||||||
|
"extensions": [
|
||||||
|
"dbaeumer.vscode-eslint",
|
||||||
|
"esbenp.prettier-vscode",
|
||||||
|
"slevesque.shader",
|
||||||
|
"circlecode.glsl-literal",
|
||||||
|
"pwn-man.three-js-snippets"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"forwardPorts": [
|
||||||
|
5173
|
||||||
|
],
|
||||||
|
"postCreateCommand": "npm install",
|
||||||
|
"remoteUser": "node"
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user