{ "extends": "../../tsconfig.json", "compilerOptions": { "outDir": "dist", "jsx": "react-jsx", "lib": ["DOM", "DOM.Iterable", "ES2023"], "types": ["node", "vitest/globals"] }, "include": [ "index.ts", "src/**/*.ts", "src/**/*.tsx", "src/**/*.json", "./package.json" ], "exclude": [ "node_modules", "dist", // TODO(5691): Fix type errors and remove excludes. "src/nonInteractiveCli.test.ts", "src/services/FileCommandLoader.test.ts", "src/services/prompt-processors/argumentProcessor.test.ts", "src/utils/cleanup.test.ts", "src/utils/handleAutoUpdate.test.ts", "src/utils/startupWarnings.test.ts", "src/ui/App.test.tsx", "src/ui/contexts/SessionContext.test.tsx", "src/ui/hooks/slashCommandProcessor.test.ts", "src/ui/hooks/useAtCompletion.test.ts", "src/ui/hooks/useConsoleMessages.test.ts", "src/ui/hooks/useCommandCompletion.test.ts", "src/ui/hooks/useFocus.test.ts", "src/ui/hooks/useFolderTrust.test.ts", "src/ui/hooks/useGeminiStream.test.tsx", "src/ui/hooks/useKeypress.test.ts", "src/ui/hooks/usePhraseCycler.test.ts", "src/ui/hooks/vim.test.ts", "src/ui/utils/computeStats.test.ts", "src/ui/themes/theme.test.ts", "src/validateNonInterActiveAuth.test.ts", "src/services/prompt-processors/shellProcessor.test.ts", "src/commands/extensions/examples/**" ], "references": [{ "path": "../core" }] }