Files
hermes-agent/ui-tui/tsconfig.json

20 lines
505 B
JSON
Raw Normal View History

2026-04-02 19:06:42 -05:00
{
"compilerOptions": {
"target": "ES2022",
"module": "nodenext",
"moduleResolution": "nodenext",
2026-04-02 19:06:42 -05:00
"jsx": "react-jsx",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": false,
"sourceMap": false,
"resolveJsonModule": true
2026-04-02 19:06:42 -05:00
},
2026-04-11 11:29:08 -05:00
"include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.tsx"],
"exclude": ["src/__tests__", "node_modules", "dist"]
2026-04-02 19:06:42 -05:00
}