mirror of
https://github.com/google-gemini/gemini-cli
synced 2026-05-24 09:38:34 +00:00
fix(core): resolve circular dependency via tsconfig paths (#16730)
This commit is contained in:
parent
53f54436c9
commit
448fd3ca66
1 changed files with 5 additions and 1 deletions
|
|
@ -4,7 +4,11 @@
|
|||
"outDir": "dist",
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2023"],
|
||||
"composite": true,
|
||||
"types": ["node", "vitest/globals"]
|
||||
"types": ["node", "vitest/globals"],
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"@google/gemini-cli-core": ["./index.ts"]
|
||||
}
|
||||
},
|
||||
"include": ["index.ts", "src/**/*.ts", "src/**/*.json"],
|
||||
"exclude": ["node_modules", "dist"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue