diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-11-08 01:08:26 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-11-08 01:08:26 -0800 |
| commit | 851d48fbf341e0f9f5f7d734666822976ab06a0e (patch) | |
| tree | 79562e31cef119604d02059132f307042ebe43e4 /tsconfig.json | |
| parent | 0c4520544bb5ecc63e833f5e344cf8cd071854cb (diff) | |
chore: bump deps
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/tsconfig.json b/tsconfig.json index e59724b..95d0cec 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,11 @@ { "compilerOptions": { "target": "es5", - "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" + ] } |
