Skip to content

Commit be4f80c

Browse files
committed
fix: Add '"types": ["node"]' to tsconfig.json, since TypeScript 6.0 no longer auto-includes it: https://devblogs.microsoft.com/typescript/announcing-typescript-6-0/#types-now-defaults-to-[]
1 parent ae7cd5c commit be4f80c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/auth/tsconfig.json

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

0 commit comments

Comments
 (0)