aboutsummaryrefslogtreecommitdiffstats
path: root/.devcontainer
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-09-10 15:41:18 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-09-10 16:07:38 +0530
commit8e9d41ad4d9bd1667e1a5b93a6932cad4d3fabc4 (patch)
tree0802bc52e681bddde3c4c9f05e0a492f46e37b4c /.devcontainer
parentdocs: updated Changelog [skip ci] (diff)
downloadferdium-app-8e9d41ad4d9bd1667e1a5b93a6932cad4d3fabc4.tar.gz
ferdium-app-8e9d41ad4d9bd1667e1a5b93a6932cad4d3fabc4.tar.zst
ferdium-app-8e9d41ad4d9bd1667e1a5b93a6932cad4d3fabc4.zip
fix: pnpm install of 'node-mac-permissions' on win
(remove recursive pnpm module installation since that is handled separately)
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json5
1 files changed, 5 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index b015c114b..85a9c5a3b 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -9,18 +9,23 @@
9 "VARIANT": "14" 9 "VARIANT": "14"
10 } 10 }
11 }, 11 },
12
12 // Set *default* container specific settings.json values on container create. 13 // Set *default* container specific settings.json values on container create.
13 "settings": { 14 "settings": {
14 "terminal.integrated.defaultProfile.linux": "/bin/bash" 15 "terminal.integrated.defaultProfile.linux": "/bin/bash"
15 }, 16 },
17
16 // Add the IDs of extensions you want installed when the container is created. 18 // Add the IDs of extensions you want installed when the container is created.
17 "extensions": [ 19 "extensions": [
18 "dbaeumer.vscode-eslint" 20 "dbaeumer.vscode-eslint"
19 ], 21 ],
22
20 // Use 'forwardPorts' to make a list of ports inside the container available locally. 23 // Use 'forwardPorts' to make a list of ports inside the container available locally.
21 // "forwardPorts": [], 24 // "forwardPorts": [],
25
22 // Use 'postCreateCommand' to run commands after the container is created. 26 // Use 'postCreateCommand' to run commands after the container is created.
23 // "postCreateCommand": "npm install", 27 // "postCreateCommand": "npm install",
28
24 // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. 29 // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
25 "remoteUser": "node" 30 "remoteUser": "node"
26} 31}