Skip to content

Commit 90e19f1

Browse files
committed
fix: add node types to python build and sdk-compat ts fixture
Same TS6 @types/node regression in two configs not exercised by turbo typecheck: python's tshy build (tsconfig.src.json) and the sdk-compat typescript fixture that compiles a process.exit() test with tsc --noEmit.
1 parent f99d99b commit 90e19f1

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

internal-packages/sdk-compat-tests/src/fixtures/typescript/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
"strict": true,
77
"esModuleInterop": true,
88
"skipLibCheck": true,
9-
"noEmit": true
9+
"noEmit": true,
10+
"types": ["node"]
1011
},
1112
"include": ["test.ts"]
1213
}

packages/python/tsconfig.src.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"isolatedDeclarations": false,
66
"composite": true,
77
"sourceMap": true,
8-
"customConditions": ["@triggerdotdev/source"]
8+
"customConditions": ["@triggerdotdev/source"],
9+
"types": ["node"]
910
}
1011
}

0 commit comments

Comments
 (0)