-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.devcontainer.json
More file actions
34 lines (34 loc) · 1010 Bytes
/
.devcontainer.json
File metadata and controls
34 lines (34 loc) · 1010 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
30
31
32
33
34
{
"customizations": {
"vscode": {
"extensions": [
"mkhl.direnv",
"oxc.oxc-vscode",
"bradlc.vscode-tailwindcss",
"yoavbls.pretty-ts-errors",
"github.vscode-github-actions",
"ms-vscode.vscode-typescript-next"
],
"settings": {
"editor.tabSize": 2,
"editor.defaultFormatter": "oxc.oxc-vscode",
"editor.formatOnSave": false,
"editor.codeActionsOnSave": {
"source.format.oxc": "always",
"source.fixAll.oxc": "always"
},
"typescript.tsdk": "node_modules/typescript/lib",
"tailwindCSS.experimental.classRegex": [
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
]
}
}
},
"image": "ghcr.io/cachix/devenv:latest",
"overrideCommand": false,
"updateContentCommand": "direnv reload",
"remoteEnv": { "LOCAL_WORKSPACE_FOLDER": "${localWorkspaceFolder}" },
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
}
}