mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-07 03:24:53 +10:00
15448cad6a
agent/service.ts uses findLastIndex/Array.prototype.with (ES2023); web type-checks api source and its ES2022 lib lacked them. lib only affects type defs, not Vite runtime output. Claude-Session: https://claude.ai/code/session_012Bnvt1MghwHj4qQRxuQUGa
27 lines
583 B
JSON
27 lines
583 B
JSON
{
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"jsx": "react-jsx",
|
|
"module": "ESNext",
|
|
"lib": ["ES2023", "DOM", "DOM.Iterable"],
|
|
"types": ["vite/client", "@testing-library/jest-dom/vitest"],
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
}
|
|
}
|