mirror of
https://github.com/earendil-works/pi.git
synced 2026-06-18 15:54:04 +08:00
18 lines
627 B
JSON
18 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"]
|
|
}
|