From 6e74c6136240dc881db1006e3a54a197ebd94593 Mon Sep 17 00:00:00 2001 From: Alisa Novikova <62909685+alisa-alisa@users.noreply.github.com> Date: Wed, 18 Feb 2026 20:57:20 -0800 Subject: [PATCH] add package @google/gemini-cli-devtools to dependencies 3 --- packages/cli/tsconfig.json | 2 +- packages/devtools/package.json | 2 +- packages/devtools/tsconfig.json | 6 ++++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/packages/cli/tsconfig.json b/packages/cli/tsconfig.json index e361d7ffe0..c3393de19b 100644 --- a/packages/cli/tsconfig.json +++ b/packages/cli/tsconfig.json @@ -14,5 +14,5 @@ "./package.json" ], "exclude": ["node_modules", "dist"], - "references": [{ "path": "../core" }] + "references": [{ "path": "../core" }, { "path": "../devtools" }] } diff --git a/packages/devtools/package.json b/packages/devtools/package.json index 03b874ffad..0b1ac20917 100644 --- a/packages/devtools/package.json +++ b/packages/devtools/package.json @@ -12,7 +12,7 @@ } }, "scripts": { - "build": "npm run build:client && tsc -p tsconfig.build.json", + "build": "npm run build:client && tsc -p tsconfig.json", "build:client": "node esbuild.client.js" }, "files": [ diff --git a/packages/devtools/tsconfig.json b/packages/devtools/tsconfig.json index fe76dc95a8..6901619de8 100644 --- a/packages/devtools/tsconfig.json +++ b/packages/devtools/tsconfig.json @@ -3,8 +3,10 @@ "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2023"], "jsx": "react-jsx", - "allowImportingTsExtensions": true, - "noEmit": true + "skipLibCheck": true, + "composite": true, + "noEmit": false, + "outDir": "dist" }, "include": ["src", "client/src"] }