chore: update dependencies and devDependencies in package.json

fix: add IconProp type for FontAwesome icons in Header and Paginator components

refactor: change string quotes from double to single in Paginator component

fix: update tsconfig.json to use react-jsx and include additional type definitions
This commit is contained in:
DerTyp7
2025-12-25 20:25:13 +01:00
parent 2594d50b09
commit 76a7ac9d83
5 changed files with 1016 additions and 452 deletions

View File

@@ -11,7 +11,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
@@ -22,6 +22,12 @@
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
}