mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-30 05:32:47 -07:00
fix(core): set rootDir in tsconfig to prevent build conflicts
This fixes the TS5055 error during the Publish Release workflow caused by the TypeScript compiler trying to overwrite input files in the dist/ directory. By explicitly setting rootDir to the package root, we ensure inputs and outputs are strictly separated.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"extends": "../../tsconfig.json",
|
||||
"compilerOptions": {
|
||||
"rootDir": ".",
|
||||
"outDir": "dist",
|
||||
"lib": ["DOM", "DOM.Iterable", "ES2023"],
|
||||
"composite": true,
|
||||
|
||||
Reference in New Issue
Block a user