mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-17 09:30:58 -07:00
22 lines
333 B
JSON
22 lines
333 B
JSON
|
|
{
|
||
|
|
"extends": "../../tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"outDir": "./dist",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"jsx": "react",
|
||
|
|
"lib": [
|
||
|
|
"DOM",
|
||
|
|
"DOM.Iterable",
|
||
|
|
"ES2020"
|
||
|
|
],
|
||
|
|
"module": "Node16",
|
||
|
|
"target": "ES2020",
|
||
|
|
},
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist"
|
||
|
|
],
|
||
|
|
"include": [
|
||
|
|
"src"
|
||
|
|
]
|
||
|
|
}
|