Files
hermes-workspace/tsconfig.json
Eric ffd60931ef fix(ci): remove stale workspace-daemon COPY from Dockerfile (#104)
The workspace-daemon/ package was removed in 82c3f70 but the Dockerfile
manifest COPY wasn't cleaned up, so CI/docker builds have been failing
at `COPY workspace-daemon/package.json workspace-daemon/` (fixes #88
pull manifest unknown symptom — no new images could be built/pushed).

Also:
- tsconfig include: `vite.config.js` → `vite.config.ts` (actual file ext)
- tsconfig: drop redundant `baseUrl`.", already implied by `paths` in TS 5

Extracted from #91 to ship the CI unblock independently; the larger
settings-UI portion of that PR stays open for separate review.

Co-authored-by: Eric <eric@outsourc-e.com>
Co-authored-by: ajojotank <ajojotank@users.noreply.github.com>
2026-04-22 14:32:25 -04:00

35 lines
711 B
JSON

{
"include": [
"**/*.ts",
"**/*.tsx",
"eslint.config.js",
"prettier.config.js",
"vite.config.ts"
],
"compilerOptions": {
"target": "ES2022",
"jsx": "react-jsx",
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"types": ["vite/client"],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"noEmit": true,
/* Linting */
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true,
"paths": {
"@/*": ["./src/*"]
}
}
}