From 436a0266017e9edc7d15e0ce11c91d8a1975108c Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Fri, 26 Jan 2024 07:24:17 +0000 Subject: [PATCH] chore(jsconfig): remove `lib`; `target` will be used in absence --- jsconfig.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/jsconfig.json b/jsconfig.json index e63dba07..628a4708 100644 --- a/jsconfig.json +++ b/jsconfig.json @@ -3,11 +3,10 @@ // Uncomment as and when needed // "checkJs": true, // "strict": true, - "lib": ["ES2022"], "module": "NodeNext", "moduleResolution": "NodeNext", "resolveJsonModule": true, - "target": "ES2022", + "target": "ES2022" }, - "exclude": ["dist", "node_modules"], + "exclude": ["dist", "node_modules"] }