From 79d01efe1059ce85d6807384d075cbcfaa0cf5ab Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Wed, 11 Oct 2023 12:39:59 +0200 Subject: [PATCH] fix(core): update --- ts_web/00_commitinfo_data.ts | 2 +- tsconfig.json | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 39dbb2b..d567165 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@losslessone_private/lele-appui-catalog', - version: '1.0.81', + version: '1.0.82', description: 'a catalog with app webcomponents' } 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" + ] }