From 7a39b8223cd14543438fbf0aa7248a5c4b997e64 Mon Sep 17 00:00:00 2001 From: xiangyu <3170102889@zju.edu.cn> Date: Tue, 24 Jan 2023 10:15:01 +0800 Subject: [PATCH] add: tsconfig skipLibCheck --- tsconfig.json | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 283a0d8..65c5124 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,15 +4,9 @@ "module": "commonjs", "target": "ES2016", "resolveJsonModule": true, + "skipLibCheck": true, "strict": true }, - "include": [ - "src", - "typing", - "node_modules/zotero-types" - ], - "exclude": [ - "builds", - "addon" - ] -} \ No newline at end of file + "include": ["src", "typing", "node_modules/zotero-types"], + "exclude": ["builds", "addon"] +}