aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorschererleander <leander@schererleander.de>2025-12-26 14:15:36 +0100
committerschererleander <leander@schererleander.de>2025-12-26 14:15:36 +0100
commit15cd71840c24b01f4bacecfa1fdb63515575e60f (patch)
treecb7fd93f2a735505883f449360d84f999582f063 /tsconfig.json
parentc0681c0b90d789a4e2a811e73f8bf9843df4e71a (diff)
chore(deps): upgrade to nextjs 16.1.1, react 19.2.3
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json24
1 files changed, 19 insertions, 5 deletions
diff --git a/tsconfig.json b/tsconfig.json
index c133409..b575f7d 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
- "lib": ["dom", "dom.iterable", "esnext"],
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -11,7 +15,7 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
- "jsx": "preserve",
+ "jsx": "react-jsx",
"incremental": true,
"plugins": [
{
@@ -19,9 +23,19 @@
}
],
"paths": {
- "@/*": ["./src/*"]
+ "@/*": [
+ "./src/*"
+ ]
}
},
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
- "exclude": ["node_modules"]
+ "include": [
+ "next-env.d.ts",
+ "**/*.ts",
+ "**/*.tsx",
+ ".next/types/**/*.ts",
+ ".next/dev/types/**/*.ts"
+ ],
+ "exclude": [
+ "node_modules"
+ ]
}