From 0d043717a659a118736a18140c6b528e4c808de1 Mon Sep 17 00:00:00 2001 From: vchikalkin Date: Tue, 27 Feb 2024 19:57:50 +0300 Subject: [PATCH] packages/tools: fix 'cannot find name window' error --- packages/tools/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/tools/tsconfig.json b/packages/tools/tsconfig.json index df23b4c..10fc0c0 100644 --- a/packages/tools/tsconfig.json +++ b/packages/tools/tsconfig.json @@ -2,5 +2,5 @@ "extends": "tsconfig/common.json", "include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"], "exclude": ["dist", "build", "node_modules"], - "compilerOptions": { "outDir": "./build" } + "compilerOptions": { "outDir": "./build", "lib": ["DOM", "ES2020"] } }