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

30 lines
795 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",
"noEmit": false,
"allowImportingTsExtensions": false,
"baseUrl": ".",
"outDir": "dist",
2025-12-01 20:11:12 +08:00
"paths": {
// Self root
"@/*": ["src/*"],
// Simplified monorepo solution (raw npm workspace with hoisting)
2025-12-16 01:30:40 +08:00
"page-agent": ["../page-agent/src/PageAgent.ts"],
2025-12-22 16:12:34 +08:00
"@page-agent/llms": ["../llms/src/index.ts"],
"@page-agent/page-controller": ["../page-controller/src/PageController.ts"],
2025-12-16 01:30:40 +08:00
"@page-agent/ui": ["../ui/src/index.ts"]
2025-12-01 20:11:12 +08:00
}
},
"include": ["**/*.ts", "**/*.tsx"],
"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-agent" },
{ "path": "../page-controller" },
{ "path": "../ui" }
]
2025-12-01 20:11:12 +08:00
}