Skip to content

Commit ed65ba3

Browse files
committed
Fix devcontainers
1 parent e3da21c commit ed65ba3

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"name": "node+python+uv (frontend/backend)",
3-
"image": "mcr.microsoft.com/devcontainers/base:debian",
3+
"image": "python:3.12",
44
"features": {
5-
"ghcr.io/devcontainers/features/node:1": { "version": "22" },
6-
"ghcr.io/devcontainers/features/python:1": { "version": "3.12" }
5+
"ghcr.io/devcontainers/features/node:1": { "version": "22" }
76
},
87
"containerEnv": {
98
"UV_PROJECT_ENVIRONMENT": ".venv",

frontend/tsconfig.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@
1919
"strict": true,
2020
"noUnusedLocals": true,
2121
"noUnusedParameters": true,
22-
"erasableSyntaxOnly": true,
23-
"noFallthroughCasesInSwitch": true,
24-
"noUncheckedSideEffectImports": true
22+
"noFallthroughCasesInSwitch": true
2523
},
2624
"include": ["src"]
2725
}

0 commit comments

Comments
 (0)