From 31940deb7af4d28d7cc874ff2f145725125b14d7 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Tue, 19 Mar 2024 17:52:27 +0100 Subject: [PATCH] fix(core): update --- ts/00_commitinfo_data.ts | 2 +- tsconfig.json | 13 +++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 15c7ab4..75bae92 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartpdf', - version: '3.0.16', + version: '3.0.17', description: 'create pdfs on the fly' } diff --git a/tsconfig.json b/tsconfig.json index ec81cc1..dfe5a55 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,14 @@ { "compilerOptions": { "experimentalDecorators": true, + "useDefineForClassFields": false, "target": "ES2022", - "module": "ES2022", - "moduleResolution": "nodenext", - "allowSyntheticDefaultImports": true - } + "module": "NodeNext", + "moduleResolution": "NodeNext", + "esModuleInterop": true, + "verbatimModuleSyntax": true + }, + "exclude": [ + "dist_*/**/*.d.ts" + ] }