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

14 lines
289 B
JSON
Raw Normal View History

2025-04-15 21:41:08 -07:00
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"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-17 18:06:21 -04:00
"target": "ES2020"
2025-04-15 21:41:08 -07:00
},
2025-04-17 18:06:21 -04:00
"exclude": ["node_modules", "dist"],
"include": ["src"]
}