From e47ba642f2bf08f2cce36a2ddc74742e57ccf471 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 10 Jan 2024 05:07:08 +0100 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- ts/mod_esbuild/index.child.ts | 1 - tsconfig.json | 11 ++++++++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 531319d..d143f28 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsbundle', - version: '2.0.14', + version: '2.0.15', description: 'a bundler using rollup for painless bundling of web projects' } diff --git a/ts/mod_esbuild/index.child.ts b/ts/mod_esbuild/index.child.ts index d06e3eb..5435fe3 100644 --- a/ts/mod_esbuild/index.child.ts +++ b/ts/mod_esbuild/index.child.ts @@ -50,7 +50,6 @@ export class TsBundleProcess { format: 'esm', target: 'es2022', minify: true, - // outfile: toArg, entryNames: 'bundle', outdir: plugins.path.parse(toArg).dir, tsconfig: paths.tsconfigPath, diff --git a/tsconfig.json b/tsconfig.json index 1838faa..dfe5a55 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,12 @@ "experimentalDecorators": true, "useDefineForClassFields": false, "target": "ES2022", - "module": "ES2022", - "moduleResolution": "nodenext" - } + "module": "NodeNext", + "moduleResolution": "NodeNext", + "esModuleInterop": true, + "verbatimModuleSyntax": true + }, + "exclude": [ + "dist_*/**/*.d.ts" + ] }