Skip to content

Commit 6c59c0f

Browse files
mikolalysenkoclaude
andcommitted
Enable TypeScript composite build for project references
Adds composite: true and tsBuildInfoFile to tsconfig.json to support TypeScript project references. This allows the socket-patch package to be built as part of the monorepo's incremental build system. Required for proper build order when depscan imports from socket-patch. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent ad282c5 commit 6c59c0f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tsconfig.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
"noUnusedParameters": true,
1919
"noImplicitReturns": true,
2020
"noFallthroughCasesInSwitch": true,
21-
"allowSyntheticDefaultImports": true
21+
"allowSyntheticDefaultImports": true,
22+
"composite": true,
23+
"tsBuildInfoFile": "./dist/tsconfig.tsbuildinfo"
2224
},
2325
"include": ["src/**/*"],
2426
"exclude": ["node_modules", "dist"]

0 commit comments

Comments
 (0)