mirror of
https://github.com/badlogic/pi-mono.git
synced 2026-07-09 17:28:45 +00:00
17 lines
627 B
JSON
17 lines
627 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"paths": {
|
|
"@earendil-works/pi-agent-core": ["../agent/dist/index.d.ts"],
|
|
"@earendil-works/pi-agent-core/*": ["../agent/dist/*.d.ts"],
|
|
"@earendil-works/pi-ai": ["../ai/dist/index.d.ts"],
|
|
"@earendil-works/pi-ai/*": ["../ai/dist/*.d.ts", "../ai/dist/providers/*.d.ts"],
|
|
"@earendil-works/pi-tui": ["../tui/dist/index.d.ts"],
|
|
"@earendil-works/pi-tui/*": ["../tui/dist/*.d.ts", "../tui/dist/components/*.d.ts"]
|
|
},
|
|
"rootDir": "./src"
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.d.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|