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
stop:

View File

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

1
package-lock.json generated
View File

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

View File

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

View File

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