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

23 lines
638 B
JSON
Raw Normal View History

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"],
"@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" },
{ "path": "../page-controller" }
2026-01-17 16:15:36 +08:00
]
2025-12-01 20:11:12 +08:00
}