Files
page-agent/tsconfig.json
T

15 lines
507 B
JSON
Raw Normal View History

2026-02-12 17:19:14 +08:00
// this is only for IDE ts language server to work.
// do not use this for building or linting.
2025-09-29 16:33:15 +08:00
{
2026-01-17 16:15:36 +08:00
"extends": "./tsconfig.base.json",
"references": [
{ "path": "./packages/page-controller" },
{ "path": "./packages/ui" },
{ "path": "./packages/llms" },
{ "path": "./packages/page-agent" },
{ "path": "./packages/website" }
],
"include": ["packages/*/src/**/*.ts", "packages/*/src/**/*.tsx"],
"exclude": ["node_modules", "dist", "packages/*/dist"]
2025-09-29 16:33:15 +08:00
}