mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-15 14:03:49 +00:00
- Create Pi Reader browser extension for Chrome/Firefox - Chrome uses Side Panel API, Firefox uses Sidebar Action API - Supports both browsers with separate manifests and unified codebase - Built with mini-lit components and Tailwind CSS v4 - Features model selection dialog with Ollama support - Hot reload development server watches both browser builds - Add useDefineForClassFields: false to fix LitElement reactivity
14 lines
448 B
JSON
14 lines
448 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@mariozechner/pi-tui": ["./packages/tui/src/index.ts"],
|
|
"@mariozechner/pi-ai": ["./packages/ai/src/index.ts"],
|
|
"@mariozechner/pi-agent": ["./packages/agent/src/index.ts"],
|
|
"@mariozechner/pi": ["./packages/pods/src/index.ts"]
|
|
}
|
|
},
|
|
"include": ["packages/*/src/**/*", "packages/*/test/**/*"],
|
|
"exclude": ["packages/browser-extension/**/*"]
|
|
}
|