From f72303520d23b1f3e122178f3ccd14300deef033 Mon Sep 17 00:00:00 2001 From: TheoryOfNekomata Date: Mon, 10 Apr 2023 09:57:11 +0800 Subject: [PATCH] Remove extra lib declaration Remove DOM lib as it is not used. --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8973956..07e48aa 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "compilerOptions": { "rootDir": "src", "module": "ESNext", - "lib": ["DOM", "ESNext"], + "lib": ["ESNext"], "importHelpers": true, "declaration": true, "sourceMap": true,