-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.devcontainer.json
More file actions
29 lines (29 loc) · 819 Bytes
/
.devcontainer.json
File metadata and controls
29 lines (29 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "Home Assistant Analytics",
"image": "mcr.microsoft.com/devcontainers/typescript-node:24",
"context": "..",
"remoteEnv": {
"PATH": "${containerEnv:PATH}:./node_modules/.bin",
"DEVCONTAINER": "true"
},
"postCreateCommand": "bash -i -c 'nvm install' && script/bootstrap",
"appPort": ["8080:8080", "3001:3001"],
"extensions": [
"dbaeumer.vscode-eslint",
"ms-vscode.vscode-typescript-tslint-plugin",
"esbenp.prettier-vscode",
"bierner.lit-html",
"runem.lit-plugin"
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 2,
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"files.trimTrailingWhitespace": true
}
}