Skip to content

Commit efd963a

Browse files
committed
fix(rbac): drop dangling references from base tsconfig
tsc -b failed: referenced src/test configs use noEmit without composite. Base tsconfig.json is now a plain IDE-default project, unrelated to the split -p configs the typecheck script uses.
1 parent 37a82b5 commit efd963a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

internal-packages/rbac/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"references": [{ "path": "./tsconfig.src.json" }, { "path": "./tsconfig.test.json" }],
32
"compilerOptions": {
43
"target": "ES2019",
54
"lib": ["ES2019", "DOM"],
@@ -14,5 +13,7 @@
1413
"strict": true,
1514
"customConditions": ["@triggerdotdev/source"]
1615
},
17-
"exclude": ["node_modules", "dist"]
16+
// Excluded from this IDE-default project: needs ES2022 lib to type-check
17+
// (see tsconfig.test.json). typecheck script still checks it.
18+
"exclude": ["node_modules", "dist", "src/fallback.userActor.test.ts"]
1819
}

0 commit comments

Comments
 (0)