frequi_origin/.devcontainer/devcontainer.json
2024-04-13 13:03:29 +02:00

43 lines
1015 B
JSON

/* cSpell:disable */
{
"name": "frequi",
"build": {
"dockerfile": "Dockerfile"
},
"forwardPorts": [
3000
],
"mounts": [
"source=frequi-bashhistory,target=/home/node/commandhistory,type=volume"
],
"remoteUser": "node",
"customizations": {
"vscode": {
"settings": {
// "editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"emmet.includeLanguages": {
"vue": "html",
"vue-html": "html"
},
"workbench.iconTheme": "vscode-icons"
},
"extensions": [
"vue.volar",
"dbaeumer.vscode-eslint",
"antfu.iconify",
"ms-playwright.playwright",
"vitest.explorer",
"yzhang.markdown-all-in-one",
"marquesmps.dockerfile-validator",
"streetsidesoftware.code-spell-checker",
"vscode-icons-team.vscode-icons",
"hediet.vscode-drawio"
]
}
},
"postCreateCommand": "yarn install"
}