2025-09-13 22:25:29 +00:00
|
|
|
{
|
|
|
|
"name": "React + Bun + Convex Development",
|
2025-09-13 22:59:23 +00:00
|
|
|
"build": {
|
|
|
|
"context": ".",
|
|
|
|
"dockerfile": "Dockerfile"
|
|
|
|
},
|
2025-09-13 22:25:29 +00:00
|
|
|
"features": {
|
|
|
|
"ghcr.io/devcontainers/features/git:1": {},
|
|
|
|
"ghcr.io/devcontainers/features/github-cli:1": {},
|
|
|
|
"ghcr.io/devcontainers/features/docker-in-docker:2": {
|
|
|
|
"moby": false
|
2025-09-14 11:00:16 +00:00
|
|
|
},
|
|
|
|
"ghcr.io/tailscale/codespace/tailscale": {
|
|
|
|
"version": "latest"
|
2025-09-13 22:25:29 +00:00
|
|
|
}
|
|
|
|
},
|
2025-09-14 11:41:17 +00:00
|
|
|
"postCreateCommand": "./scripts/setup-git.sh",
|
2025-09-13 22:25:29 +00:00
|
|
|
"customizations": {
|
|
|
|
"vscode": {
|
|
|
|
"extensions": [
|
|
|
|
"biomejs.biome",
|
|
|
|
"bradlc.vscode-tailwindcss",
|
|
|
|
"ms-vscode.vscode-typescript-next",
|
|
|
|
"esbenp.prettier-vscode",
|
|
|
|
"ms-vscode.vscode-json",
|
|
|
|
"formulahendry.auto-rename-tag",
|
|
|
|
"christian-kohler.path-intellisense",
|
|
|
|
"ms-vscode.vscode-eslint",
|
|
|
|
"convex.convex-vscode"
|
|
|
|
],
|
|
|
|
"settings": {
|
|
|
|
"editor.defaultFormatter": "biomejs.biome",
|
|
|
|
"editor.formatOnSave": true,
|
|
|
|
"editor.codeActionsOnSave": {
|
2025-09-14 00:52:57 +00:00
|
|
|
"source.organizeImports.biome": "explicit",
|
|
|
|
"source.fixAll.biome": "explicit"
|
2025-09-13 22:25:29 +00:00
|
|
|
},
|
|
|
|
"typescript.preferences.importModuleSpecifier": "relative",
|
|
|
|
"typescript.suggest.autoImports": true,
|
|
|
|
"emmet.includeLanguages": {
|
|
|
|
"typescript": "html",
|
|
|
|
"typescriptreact": "html"
|
|
|
|
},
|
|
|
|
"tailwindCSS.experimental.classRegex": [
|
|
|
|
["cva\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"],
|
|
|
|
["cx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"]
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"forwardPorts": [3000, 5173, 8080],
|
|
|
|
"portsAttributes": {
|
|
|
|
"3000": {
|
|
|
|
"label": "Development Server",
|
|
|
|
"onAutoForward": "notify"
|
|
|
|
},
|
|
|
|
"5173": {
|
|
|
|
"label": "Vite Dev Server",
|
|
|
|
"onAutoForward": "notify"
|
|
|
|
},
|
|
|
|
"8080": {
|
|
|
|
"label": "Preview Server",
|
|
|
|
"onAutoForward": "notify"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"remoteUser": "node"
|
|
|
|
}
|