Files
qwen-code/packages/cli/tsconfig.json
Brandon Keiji f480ef4bbc refactor: clean up build output (#53)
* refactor: clean up build output

* refactor: add index.ts to package roots
2025-04-20 12:33:39 -07:00

15 lines
340 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"jsx": "react",
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"paths": {
"@gemini-code/*": ["./packages/*"]
},
"types": ["node", "vitest/globals"]
},
"exclude": ["node_modules", "dist"],
"references": [{ "path": "../server" }]
}