mirror of
https://github.com/vxcontrol/pentagi.git
synced 2026-05-29 18:10:56 +00:00
abe45e33c9
- src/lib/сlipboard.ts → clipboard.ts: the filename used a Cyrillic 'с' (U+0441) instead of Latin 'c', which made the path silently unmatchable by anyone typing the import with a Latin letter. Update the 4 importers in features/flows. - Delete unreachable settings-mcp-server(s).tsx (~1.3k lines): no routes registered in app.tsx and nothing imports them. Remove the matching dead branches and commented menu entry from settings-layout.tsx. - Drop unused dev deps simple-git-hooks and lint-staged: no config in the repo, not used by CI or Docker, hooks were never wired up. Also remove simple-git-hooks from pnpm.onlyBuiltDependencies. - Drop unused tsconfig path aliases: @/ui/*, @env (env.ts doesn't even exist), and @pkg. Only @/* remains. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
33 lines
805 B
JSON
33 lines
805 B
JSON
{
|
|
"compilerOptions": {
|
|
/* Base Options: */
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"target": "es2022",
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"moduleDetection": "force",
|
|
"isolatedModules": true,
|
|
"verbatimModuleSyntax": true,
|
|
|
|
/* Strictness */
|
|
"strict": true,
|
|
"noUncheckedIndexedAccess": true,
|
|
"noImplicitOverride": true,
|
|
|
|
/* If NOT transpiling with TypeScript: */
|
|
"module": "preserve",
|
|
"noEmit": true,
|
|
|
|
/* If your code runs in the DOM: */
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
|
"jsx": "react-jsx",
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src", "types/**/*.d.ts"]
|
|
}
|