diff options
| author | Pinapelz <yukais@pinapelz.com> | 2025-12-04 00:35:49 -0800 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2025-12-04 00:37:14 -0800 |
| commit | fdd5507f93fc0f34c222255c6c81f513597ea67d (patch) | |
| tree | c61e1a4c7a1c1643f5a4b47f09e4d6fdad745413 /tsconfig.json | |
| parent | 112cd397d3e9b89c02d6dfc8b7ed2a15dcd2ee24 (diff) | |
bump next and other deps for cvemaster
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" + ] } |
