mirror of
https://github.com/tiennm99/goclaw.git
synced 2026-06-10 02:12:05 +00:00
b59a623649
Web UI: - i18next 25→26, react-i18next 16→17 - lucide-react 0.468→1.7 (no brand icons used) - tailwind-merge 2→3 (Tailwind CSS 4 compat) - typescript 5.7→6.0 (remove deprecated baseUrl from tsconfig) Desktop UI: - i18next 25→26, react-i18next 16→17 - immer 10→11 (internal perf improvements) - react-markdown 9→10, react-syntax-highlighter 15→16 - typescript 5.9→6.0 - Fix MarkdownRenderer: wrap ReactMarkdown in div for className (v10 removed prop) Both: build verified, pnpm audit 0 vulnerabilities
25 lines
594 B
JSON
25 lines
594 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|