mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 09:58:28 -04:00
29 lines
747 B
JSON
29 lines
747 B
JSON
{
|
|
"name": "jarv.is",
|
|
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:0-14",
|
|
"settings": {
|
|
"editor.fontFamily": "'Source Code Pro', Menlo, Monaco, 'Courier New', monospace",
|
|
"editor.fontSize": 14,
|
|
"editor.letterSpacing": 0.2,
|
|
"editor.lineHeight": 23,
|
|
"editor.minimap.enabled": false,
|
|
"terminal.integrated.shell.linux": "/bin/zsh",
|
|
"workbench.colorTheme": "GitHub Dark"
|
|
},
|
|
"extensions": [
|
|
"budparr.language-hugo-vscode",
|
|
"bungcip.better-toml",
|
|
"dbaeumer.vscode-eslint",
|
|
"esbenp.prettier-vscode",
|
|
"stylelint.vscode-stylelint"
|
|
],
|
|
"forwardPorts": [
|
|
1337,
|
|
9337
|
|
],
|
|
"postCreateCommand": "yarn install",
|
|
"containerEnv": {
|
|
"DISABLE_NODEJS_BUILD": "true"
|
|
}
|
|
}
|