From c3a596a771641171f1626ac408de4111c85a6baa Mon Sep 17 00:00:00 2001 From: Anton Golub Date: Sun, 17 Mar 2024 16:58:16 +0300 Subject: [PATCH] build: remove `DOM` from `compilerOptions.lib` finalizes #619 relates #722 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a769363c8a..b354cd7930 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "target": "ES2021", - "lib": ["ES2021", "DOM"], + "lib": ["ES2021"], "moduleResolution": "NodeNext", "module": "NodeNext", "strict": true,