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
6 changes: 6 additions & 0 deletions libs/ag-ui/tsconfig.type-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"extends": "./tsconfig.lib.json",
"compilerOptions": {
"noEmit": true,
// This target runs the workspace `tsc` (newer than the build compilers),
// which errors on the inherited baseUrl unless deprecations are ignored.
"ignoreDeprecations": "6.0",
// Type-specs import sibling libraries through tsconfig paths; with noEmit
// the rootDir only has to be wide enough to contain them.
"rootDir": "../..",
"strict": true,
"strictFunctionTypes": true,
"skipLibCheck": true,
Expand Down
6 changes: 6 additions & 0 deletions libs/chat/tsconfig.type-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
"compilerOptions": {
"outDir": "../../dist/out-tsc/type-tests",
"noEmit": true,
// This target runs the workspace `tsc` (newer than the build compilers),
// which errors on the inherited baseUrl unless deprecations are ignored.
"ignoreDeprecations": "6.0",
// Type-specs import sibling libraries through tsconfig paths; with noEmit
// the rootDir only has to be wide enough to contain them.
"rootDir": "../..",
"composite": false,
"declarationMap": false,
"emitDeclarationOnly": false,
Expand Down
6 changes: 6 additions & 0 deletions libs/langgraph/tsconfig.type-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"extends": "./tsconfig.lib.json",
"compilerOptions": {
"noEmit": true,
// This target runs the workspace `tsc` (newer than the build compilers),
// which errors on the inherited baseUrl unless deprecations are ignored.
"ignoreDeprecations": "6.0",
// Type-specs import sibling libraries through tsconfig paths; with noEmit
// the rootDir only has to be wide enough to contain them.
"rootDir": "../..",
"strict": true,
"strictFunctionTypes": true,
"skipLibCheck": true,
Expand Down
Loading