mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-11 06:31:01 -07:00
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"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/utils/cleanup.test.ts",
|
|
"src/utils/handleAutoUpdate.test.ts",
|
|
"src/utils/startupWarnings.test.ts",
|
|
"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"
|
|
],
|
|
"references": [{ "path": "../core" }]
|
|
}
|