Files
gemini-cli/packages/cli/tsconfig.json
T

20 lines
398 B
JSON
Raw Normal View History

2025-04-15 21:41:08 -07:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
2025-04-18 14:37:02 -07:00
"outDir": "dist",
"rootDir": ".",
2025-04-15 21:41:08 -07:00
"jsx": "react",
2025-04-17 18:06:21 -04:00
"lib": ["DOM", "DOM.Iterable", "ES2020"],
2025-04-15 21:41:08 -07:00
"module": "Node16",
2025-04-18 14:37:02 -07:00
"target": "ES2020",
"paths": {
"@gemini-code/*": ["./packages/*"]
}
2025-04-15 21:41:08 -07:00
},
2025-04-17 18:06:21 -04:00
"exclude": ["node_modules", "dist"],
2025-04-18 14:37:02 -07:00
"include": ["src"],
"references": [
{ "path": "../server" },
]
2025-04-17 18:06:21 -04:00
}