chore: update tsconfig.json jsx setting

Co-authored-by: MrPiglr <31398225+MrPiglr@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-02-07 02:33:05 +00:00
parent c0431cd8e7
commit e8a484ac5d

View file

@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@ -19,7 +23,9 @@
}
],
"paths": {
"@/*": ["./*"]
"@/*": [
"./*"
]
}
},
"include": [
@ -30,5 +36,7 @@
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
"exclude": [
"node_modules"
]
}