chore: update tsconfig.json to use 'react-jsx' for JSX transformation

This commit is contained in:
Marco Pedone 2026-01-14 14:44:50 +01:00
parent 867dbe4a4f
commit d79d7c5c6c

View file

@ -9,16 +9,22 @@
"forceConsistentCasingInFileNames": true,
"incremental": true,
"isolatedModules": true,
"jsx": "preserve",
"jsx": "react-jsx",
/* Bundled projects */
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "Bundler",
"noEmit": true,
"noUncheckedIndexedAccess": true,
"paths": {
"~/*": ["./src/*"]
"~/*": [
"./src/*"
]
},
"plugins": [
{