From b18cf710789ac5a897a2a7a8a653e14b80b2f5ec Mon Sep 17 00:00:00 2001 From: Cristian Dominguez <6853656+cristiand391@users.noreply.github.com> Date: Sat, 19 Aug 2023 15:03:08 -0300 Subject: [PATCH] chore: drop node 14 also stop shipping source map and typedef files. --- tsconfig.json | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 970d872..149ed01 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,10 +2,8 @@ "compilerOptions": { "strict": true, "module": "commonjs", - "target": "es2020", - "lib": ["es2020"], - "sourceMap": true, - "declaration": true, + "target": "ES2021", + "lib": ["ES2021"], "moduleResolution": "node", "alwaysStrict": true, "noUnusedLocals": true,