summaryrefslogtreecommitdiff
path: root/.devcontainer
diff options
context:
space:
mode:
authortamaina <tamaina@hotmail.co.jp>2023-03-05 01:06:30 +0900
committertamaina <tamaina@hotmail.co.jp>2023-03-05 01:06:30 +0900
commitc54712233cfe212b090a16c567cb1c1ed8cc8058 (patch)
treeb283d9bec8cc7b127d00987594414cc9a57f440a /.devcontainer
parentdocker: build assets on native arch (#10080) (diff)
downloadsharkey-c54712233cfe212b090a16c567cb1c1ed8cc8058.tar.gz
sharkey-c54712233cfe212b090a16c567cb1c1ed8cc8058.tar.bz2
sharkey-c54712233cfe212b090a16c567cb1c1ed8cc8058.zip
Dev Container周り
Related to #10201
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json19
1 files changed, 15 insertions, 4 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index fde7ec0f2b..59d3959462 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -3,9 +3,20 @@
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspace",
- "features": {
- "ghcr.io/devcontainers-contrib/features/pnpm:2": {}
- },
"forwardPorts": [3000],
- "postCreateCommand": "sudo chmod 755 .devcontainer/init.sh && .devcontainer/init.sh"
+ "postCreateCommand": "sudo chmod 755 .devcontainer/init.sh && .devcontainer/init.sh",
+ "customizations": {
+ "vscode": {
+ "extensions": [
+ "editorconfig.editorconfig",
+ "eg2.vscode-npm-script",
+ "dbaeumer.vscode-eslint",
+ "Vue.volar",
+ "Vue.vscode-typescript-vue-plugin",
+ "Orta.vscode-jest",
+ "dbaeumer.vscode-eslint",
+ "mrmlnc.vscode-json5"
+ ]
+ }
+ }
}