-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
31 lines (31 loc) · 1.01 KB
/
devcontainer.json
File metadata and controls
31 lines (31 loc) · 1.01 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
{
"name": "Stylescape React Example",
"image": "mcr.microsoft.com/devcontainers/javascript-node:22",
"features": {},
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"stylelint.vscode-stylelint",
"syler.sass-indented",
"dsznajder.es7-react-js-snippets",
"formulahendry.auto-rename-tag",
"PKief.material-icon-theme"
],
"settings": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
}
}
}
},
"forwardPorts": [3000, 5173],
"postCreateCommand": "npm install",
"remoteUser": "vscode"
}