Fix some errors

This commit is contained in:
2026-01-23 13:17:59 +01:00
parent 960a40715d
commit 497741fe1b
5 changed files with 6602 additions and 6591 deletions

View File

@@ -1,4 +1,4 @@
run: run: stop
docker compose up -d docker compose up -d
stop: stop:

View File

@@ -6,5 +6,4 @@ services:
- "3000:3000" - "3000:3000"
volumes: volumes:
- .:/app - .:/app
- /app/node_modules
command: sh -c "npm install && npm run dev" command: sh -c "npm install && npm run dev"

1
package-lock.json generated
View File

@@ -14,6 +14,7 @@
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/postcss": "^4", "@tailwindcss/postcss": "^4",
"@types/json-schema": "^7.0.15",
"@types/node": "^20", "@types/node": "^20",
"@types/react": "^19", "@types/react": "^19",
"@types/react-dom": "^19", "@types/react-dom": "^19",

View File

@@ -15,6 +15,7 @@
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/postcss": "^4", "@tailwindcss/postcss": "^4",
"@types/json-schema": "^7.0.15",
"@types/node": "^20", "@types/node": "^20",
"@types/react": "^19", "@types/react": "^19",
"@types/react-dom": "^19", "@types/react-dom": "^19",
@@ -22,5 +23,6 @@
"eslint-config-next": "16.1.4", "eslint-config-next": "16.1.4",
"tailwindcss": "^4", "tailwindcss": "^4",
"typescript": "^5" "typescript": "^5"
} },
"types": "json-schema"
} }

View File

@@ -1,7 +1,12 @@
{ {
"compilerOptions": { "compilerOptions": {
"forceConsistentCasingInFileNames": true,
"target": "ES2017", "target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"], "lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"strict": true, "strict": true,
@@ -19,7 +24,9 @@
} }
], ],
"paths": { "paths": {
"@/*": ["./*"] "@/*": [
"./*"
]
} }
}, },
"include": [ "include": [
@@ -30,5 +37,7 @@
".next/dev/types/**/*.ts", ".next/dev/types/**/*.ts",
"**/*.mts" "**/*.mts"
], ],
"exclude": ["node_modules"] "exclude": [
"node_modules"
]
} }