Files
f1r3wave-website/tsconfig.json
DerTyp7 76a7ac9d83 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
2025-12-25 20:25:13 +01:00

34 lines
592 B
JSON

{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules"]
}