From f83b872f314d8abf3e530b706b5ab6e22b591c1f Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 25 May 2022 23:43:44 +0200 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/tsbuild.exports.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 54d7680..f6e7191 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@gitzone/tsbuild', - version: '2.1.62', + version: '2.1.63', description: 'TypeScript nightly to easily make use of latest features' } diff --git a/ts/tsbuild.exports.ts b/ts/tsbuild.exports.ts index a1abdce..b3eac27 100644 --- a/ts/tsbuild.exports.ts +++ b/ts/tsbuild.exports.ts @@ -40,11 +40,11 @@ export let compileGlobStringObject = async ( const absoluteFilePathArray: string[] = plugins.smartpath.transform.toAbsolute( fileTreeArray, cwdArg - ); + ) as string[]; const destDir: string = plugins.smartpath.transform.toAbsolute( globStringObjectArg[keyArg], cwdArg - ); + ) as string; tsOptionsArg = { ...tsOptionsArg, outDir: destDir,