Files
page-agent/packages/page-agent/tsconfig.json
T

25 lines
598 B
JSON
Raw Normal View History

2025-12-01 20:11:12 +08:00
{
"extends": "../../tsconfig.base.json",
2025-12-01 20:11:12 +08:00
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.tsbuildinfo",
2025-12-01 20:11:12 +08:00
"noEmit": false,
"allowImportingTsExtensions": false,
"baseUrl": ".",
"outDir": "dist",
"paths": {
2025-12-16 01:30:40 +08:00
//
2025-12-22 16:12:34 +08:00
"@page-agent/llms": ["../llms/src/index.ts"],
2025-12-16 01:30:40 +08:00
"@page-agent/page-controller": ["../page-controller/src/PageController.ts"],
"@page-agent/ui": ["../ui/src/index.ts"]
}
2025-12-01 20:11:12 +08:00
},
"include": ["**/*.ts"],
"exclude": ["dist", "node_modules"],
2025-12-16 01:30:40 +08:00
"references": [
//
2025-12-22 16:12:34 +08:00
{ "path": "../llms" },
2025-12-16 01:30:40 +08:00
{ "path": "../page-controller" },
{ "path": "../ui" }
]
2025-12-01 20:11:12 +08:00
}