hermes-agent/ui-tui/tsconfig.json
ethernet 3bfbb3f2a0 change(tooling): typecheck in CI, update ts to 6
fix(ui-tui): fix ts 6 real type errors

change(tooling): use new node everywhere
2026-06-10 11:59:34 -04:00

20 lines
528 B
JSON

{
"compilerOptions": {
"target": "ES2023",
"lib": ["ES2023"],
"module": "nodenext",
"moduleResolution": "nodenext",
"jsx": "react-jsx",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": false,
"sourceMap": false,
"resolveJsonModule": true
},
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.tsx"],
"exclude": ["src/__tests__", "node_modules", "dist"]
}