infra: add multipackage support (#34)

This commit is contained in:
Brandon Keiji
2025-04-18 14:37:02 -07:00
committed by GitHub
parent f51ca774cf
commit 52683dafc3
10 changed files with 91 additions and 707 deletions

View File

@@ -1,13 +1,19 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"outDir": "dist",
"rootDir": ".",
"jsx": "react",
"lib": ["DOM", "DOM.Iterable", "ES2020"],
"module": "Node16",
"target": "ES2020"
"target": "ES2020",
"paths": {
"@gemini-code/*": ["./packages/*"]
}
},
"exclude": ["node_modules", "dist"],
"include": ["src"]
"include": ["src"],
"references": [
{ "path": "../server" },
]
}