2026-04-26 14:27:08 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-05-06 14:02:57 -04:00
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"module": "ESNext",
|
2026-04-26 14:27:08 +00:00
|
|
|
"skipLibCheck": true,
|
2026-05-06 14:02:57 -04:00
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
2026-04-26 14:27:08 +00:00
|
|
|
"isolatedModules": true,
|
2026-05-06 14:02:57 -04:00
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
2026-05-07 20:07:45 -04:00
|
|
|
"ignoreDeprecations": "5.0",
|
2026-05-06 14:02:57 -04:00
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["src/*"]
|
2026-04-26 14:27:08 +00:00
|
|
|
}
|
2026-05-06 14:02:57 -04:00
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
2026-04-26 14:27:08 +00:00
|
|
|
}
|