From 6d21687ca9e8446de09f2e797e022b3565bec929 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 24 Mar 2026 15:03:52 +0000 Subject: [PATCH] Make tsc happier Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- apps/web/playwright/tsconfig.json | 3 ++- apps/web/tsconfig.json | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/web/playwright/tsconfig.json b/apps/web/playwright/tsconfig.json index 1b612abfa3..968d903fa4 100644 --- a/apps/web/playwright/tsconfig.json +++ b/apps/web/playwright/tsconfig.json @@ -7,7 +7,8 @@ "esModuleInterop": true, "moduleResolution": "node", "module": "es2022", - "allowImportingTsExtensions": true + "allowImportingTsExtensions": true, + "types": ["node"] }, "include": [ "**/*.ts", diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json index 70a03bcc8a..9f97d8a94e 100644 --- a/apps/web/tsconfig.json +++ b/apps/web/tsconfig.json @@ -16,6 +16,7 @@ "jsx": "react", "lib": ["es2022", "es2024.promise", "dom", "dom.iterable"], "strict": true, + "types": ["node"], "paths": { "jest-matrix-react": ["./test/test-utils/jest-matrix-react"], "rollup/parseAst": ["../../node_modules/rollup/dist/parseAst"]