packages/tools: fix 'cannot find name window' error

This commit is contained in:
vchikalkin 2024-02-27 19:57:50 +03:00
parent 199a622c46
commit 0d043717a6

View File

@ -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"] }
}