mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-23 16:36:23 +00:00
- Type gatewayState in session store - Electron main.ts: force-show window for e2e test workers - tsconfig: include e2e test types - nix/devShell.nix: add cage for headless visual testing on tiling WMs
28 lines
862 B
JSON
28 lines
862 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2023",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ES2023"],
|
|
"types": ["node"],
|
|
"allowJs": false,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@hermes/plugin-sdk": ["./src/sdk/index.ts"],
|
|
"@hermes/shared/billing": ["../shared/src/billing-types.ts"],
|
|
"@hermes/shared": ["../shared/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["src", "../shared/src"],
|
|
"exclude": ["e2e", "electron", "playwright.config.ts"],
|
|
"references": [{ "path": "./tsconfig.electron.json" }]
|
|
}
|