commit 9e19de094e4008bd1f2a8720bc212a5067980ed6
parent 4d8eefbc836fa9db6c246dde497ce55a9d1522f5
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date:   Fri, 23 Aug 2024 16:04:42 +0200

fix(composer): set target to es2023

Diffstat:
Mcomposer/tsconfig.json | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/composer/tsconfig.json b/composer/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { "outDir": "build/typescript", - "target": "ES6", + "target": "ES2023", "typeRoots": ["types/*"] }, "include": ["./src/main/ts/**/*", "./types/**/*"]