add package @google/gemini-cli-devtools to dependencies 3

This commit is contained in:
Alisa Novikova
2026-02-18 20:57:20 -08:00
parent b01847f6de
commit 6e74c61362
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -14,5 +14,5 @@
"./package.json" "./package.json"
], ],
"exclude": ["node_modules", "dist"], "exclude": ["node_modules", "dist"],
"references": [{ "path": "../core" }] "references": [{ "path": "../core" }, { "path": "../devtools" }]
} }
+1 -1
View File
@@ -12,7 +12,7 @@
} }
}, },
"scripts": { "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" "build:client": "node esbuild.client.js"
}, },
"files": [ "files": [
+4 -2
View File
@@ -3,8 +3,10 @@
"compilerOptions": { "compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ES2023"], "lib": ["DOM", "DOM.Iterable", "ES2023"],
"jsx": "react-jsx", "jsx": "react-jsx",
"allowImportingTsExtensions": true, "skipLibCheck": true,
"noEmit": true "composite": true,
"noEmit": false,
"outDir": "dist"
}, },
"include": ["src", "client/src"] "include": ["src", "client/src"]
} }