website cleanup

This commit is contained in:
2025-12-25 00:37:40 +01:00
parent ffcbc85b9b
commit 9a20a9bbfb
5 changed files with 61 additions and 29 deletions

View File

@@ -2,7 +2,13 @@
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"lib": ["ES2022", "DOM", "dom", "dom.iterable", "esnext"],
"lib": [
"ES2022",
"DOM",
"dom",
"dom.iterable",
"esnext"
],
"moduleResolution": "bundler",
"esModuleInterop": true,
"jsx": "preserve",
@@ -29,24 +35,52 @@
"incremental": true,
"noEmitOnError": true,
"allowJs": true,
"types": ["react", "react-dom"],
"types": [
"react",
"react-dom"
],
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"],
"@testing/*": ["../../testing/*"],
"@/lib/dtos": ["./lib/dtos"],
"@/lib/view-models": ["./lib/view-models"],
"@/lib/presenters": ["./lib/presenters"],
"@/lib/services": ["./lib/services"],
"@/lib/api": ["./lib/api"],
"@/lib/types": ["./lib/types"]
"@/*": [
"./*"
],
"@testing/*": [
"../../testing/*"
],
"@/lib/dtos": [
"./lib/dtos"
],
"@/lib/view-models": [
"./lib/view-models"
],
"@/lib/presenters": [
"./lib/presenters"
],
"@/lib/services": [
"./lib/services"
],
"@/lib/api": [
"./lib/api"
],
"@/lib/types": [
"./lib/types"
]
}
},
"include": ["next-env.d.ts", "app/", "components/", "hooks/", "lib/", "types/", "utilities/"],
"include": [
"app/",
"components/",
"hooks/",
"lib/",
"next-env.d.ts",
"types/",
"utilities/",
".next/types/**/*.ts"
],
"exclude": [
"**/*.test.ts",
"**/*.test.tsx",