2025-12-01 20:11:12 +08:00
|
|
|
{
|
2026-01-17 16:15:36 +08:00
|
|
|
"extends": "../../tsconfig.base.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
|
|
|
|
|
"noEmit": false,
|
|
|
|
|
"allowImportingTsExtensions": false,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"paths": {
|
|
|
|
|
//
|
|
|
|
|
"@page-agent/llms": ["../llms/src/index.ts"],
|
2026-01-19 16:06:07 +08:00
|
|
|
"@page-agent/page-controller": ["../page-controller/src/PageController.ts"]
|
2026-01-17 16:15:36 +08:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"include": ["**/*.ts"],
|
|
|
|
|
"exclude": ["dist", "node_modules"],
|
|
|
|
|
"references": [
|
|
|
|
|
//
|
|
|
|
|
{ "path": "../llms" },
|
2026-01-19 16:06:07 +08:00
|
|
|
{ "path": "../page-controller" }
|
2026-01-17 16:15:36 +08:00
|
|
|
]
|
2025-12-01 20:11:12 +08:00
|
|
|
}
|