frequi_origin/.devcontainer/devcontainer.json

43 lines
1015 B
JSON
Raw Normal View History

2020-06-04 09:02:46 +00:00
/* cSpell:disable */
{
2023-05-09 05:01:13 +00:00
"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",
2023-05-09 05:01:13 +00:00
"yzhang.markdown-all-in-one",
"marquesmps.dockerfile-validator",
"streetsidesoftware.code-spell-checker",
"vscode-icons-team.vscode-icons",
"hediet.vscode-drawio"
2023-05-09 05:01:13 +00:00
]
}
},
2024-05-24 04:57:04 +00:00
"postCreateCommand": "pnpm install"
}