Create global tsconfig

This commit is contained in:
Nate Kelley 2025-07-14 09:44:10 -06:00
parent 5352ae8f10
commit 8616aa75c8
No known key found for this signature in database
GPG Key ID: FD90372AB8D98B4F
1 changed files with 29 additions and 0 deletions

29
tsconfig.json Normal file
View File

@ -0,0 +1,29 @@
{
"files": [],
"references": [
// Packages - Base configs first
{ "path": "./packages/typescript-config" },
{ "path": "./packages/vitest-config" },
// Core packages
{ "path": "./packages/database" },
{ "path": "./packages/supabase" },
{ "path": "./packages/server-shared" },
// Feature packages
{ "path": "./packages/access-controls" },
{ "path": "./packages/ai" },
{ "path": "./packages/data-source" },
{ "path": "./packages/rerank" },
{ "path": "./packages/slack" },
{ "path": "./packages/stored-values" },
{ "path": "./packages/test-utils" },
{ "path": "./packages/web-tools" },
// Apps
{ "path": "./apps/server" },
{ "path": "./apps/trigger" },
{ "path": "./apps/web" },
{ "path": "./apps/electric-server" }
]
}