From 4291cb8cd59afa9f7e2cff46f12dae6e26f7c5bc Mon Sep 17 00:00:00 2001 From: Philipp Fritsche Date: Wed, 3 Aug 2022 00:33:16 +0200 Subject: [PATCH] fix(build): transpile to es2019 syntax (#1016) --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 61722c8c..2e43c4df 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "dist" ], "scripts": { - "build": "scripts ts-build2 --cjs", + "build": "scripts ts-build2 --cjs --target es2019", "lint": "kcd-scripts lint", "setup": "npm install && npm run validate -s", "test": "kcd-scripts test", @@ -35,7 +35,7 @@ "validate": "kcd-scripts typecheck" }, "devDependencies": { - "@ph.fritsche/scripts-config": "^2.2.4", + "@ph.fritsche/scripts-config": "^2.3.0", "@testing-library/dom": "^8.11.4", "@testing-library/jest-dom": "^5.16.3", "@testing-library/react": "^13.0.0",