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

View File

@@ -14,5 +14,5 @@
"./package.json"
],
"exclude": ["node_modules", "dist"],
"references": [{ "path": "../core" }]
"references": [{ "path": "../core" }, { "path": "../devtools" }]
}

View File

@@ -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": [

View File

@@ -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"]
}