Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/core/tsconfig.ai-v7.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@
// file-direct rationale.
"extends": "./tsconfig.src.json",
"compilerOptions": {
// noEmit-only gate: disable composite/incremental so this pass never writes or
// reads a .tsbuildinfo and can't replay stale module resolution across runs.
"composite": false,
"incremental": false,
"baseUrl": ".",
"paths": {
"ai": ["./node_modules/ai-v7/dist/index.d.ts"]
Expand Down
4 changes: 4 additions & 0 deletions packages/trigger-sdk/tsconfig.ai-v7.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@
// real installed `ai`, which would make this pass a no-op.
"extends": "./tsconfig.json",
"compilerOptions": {
// noEmit-only gate: disable composite/incremental so this pass never writes or
// reads a .tsbuildinfo and can't replay stale module resolution across runs.
"composite": false,
"incremental": false,
"baseUrl": ".",
"paths": {
"ai": ["./node_modules/ai-v7/dist/index.d.ts"]
Expand Down
Loading