From 7b5d037b2f8927822764544d59566b5ffe2c414c Mon Sep 17 00:00:00 2001 From: britsta Date: Wed, 27 May 2026 11:37:11 +0200 Subject: [PATCH 1/4] chore: remove baseUrl option --- packages/app-runtime/test/tsconfig.json | 1 - .../test/modules/attributes/AttributesController.test.ts | 2 +- packages/consumption/test/tsconfig.json | 1 - packages/content/test/tsconfig.json | 1 - packages/core-types/test/tsconfig.json | 1 - packages/runtime/test/tsconfig.json | 1 - packages/transport/test/tsconfig.json | 1 - 7 files changed, 1 insertion(+), 7 deletions(-) diff --git a/packages/app-runtime/test/tsconfig.json b/packages/app-runtime/test/tsconfig.json index db9a0d1ee..1a6e3640f 100644 --- a/packages/app-runtime/test/tsconfig.json +++ b/packages/app-runtime/test/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "baseUrl": "../", "noEmit": true, "composite": false }, diff --git a/packages/consumption/test/modules/attributes/AttributesController.test.ts b/packages/consumption/test/modules/attributes/AttributesController.test.ts index c0bbd361b..aaca914d5 100644 --- a/packages/consumption/test/modules/attributes/AttributesController.test.ts +++ b/packages/consumption/test/modules/attributes/AttributesController.test.ts @@ -16,7 +16,6 @@ import { } from "@nmshd/content"; import { CoreAddress, CoreDate, CoreId } from "@nmshd/core-types"; import { AccountController, ClientResult, TagClient, Transport } from "@nmshd/transport"; -import { IPeerRelationshipAttributeSuccessorParams } from "src/modules/attributes/local/successorParams/PeerRelationshipAttributeSuccessorParams"; import { anything, reset, spy, verify, when } from "ts-mockito"; import { AttributeCreatedEvent, @@ -40,6 +39,7 @@ import { ReceivedAttributeDeletionStatus, ThirdPartyRelationshipAttribute } from "../../../src"; +import { IPeerRelationshipAttributeSuccessorParams } from "../../../src/modules/attributes/local/successorParams/PeerRelationshipAttributeSuccessorParams"; import { TestUtil } from "../../core/TestUtil"; import { MockEventBus } from "../MockEventBus"; diff --git a/packages/consumption/test/tsconfig.json b/packages/consumption/test/tsconfig.json index db9a0d1ee..1a6e3640f 100644 --- a/packages/consumption/test/tsconfig.json +++ b/packages/consumption/test/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "baseUrl": "../", "noEmit": true, "composite": false }, diff --git a/packages/content/test/tsconfig.json b/packages/content/test/tsconfig.json index db9a0d1ee..1a6e3640f 100644 --- a/packages/content/test/tsconfig.json +++ b/packages/content/test/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "baseUrl": "../", "noEmit": true, "composite": false }, diff --git a/packages/core-types/test/tsconfig.json b/packages/core-types/test/tsconfig.json index db9a0d1ee..1a6e3640f 100644 --- a/packages/core-types/test/tsconfig.json +++ b/packages/core-types/test/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "baseUrl": "../", "noEmit": true, "composite": false }, diff --git a/packages/runtime/test/tsconfig.json b/packages/runtime/test/tsconfig.json index db9a0d1ee..1a6e3640f 100644 --- a/packages/runtime/test/tsconfig.json +++ b/packages/runtime/test/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "baseUrl": "../", "noEmit": true, "composite": false }, diff --git a/packages/transport/test/tsconfig.json b/packages/transport/test/tsconfig.json index db9a0d1ee..1a6e3640f 100644 --- a/packages/transport/test/tsconfig.json +++ b/packages/transport/test/tsconfig.json @@ -1,7 +1,6 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { - "baseUrl": "../", "noEmit": true, "composite": false }, From 59430ed96d30245b0f70cba66b24ef43b30144c5 Mon Sep 17 00:00:00 2001 From: britsta Date: Wed, 27 May 2026 11:37:51 +0200 Subject: [PATCH 2/4] chore: remove downlevelIteration option --- packages/tsconfig.base.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/tsconfig.base.json b/packages/tsconfig.base.json index 5ef06cf28..3904fd702 100644 --- a/packages/tsconfig.base.json +++ b/packages/tsconfig.base.json @@ -16,7 +16,6 @@ "noImplicitReturns": true, "strictNullChecks": true, "strictPropertyInitialization": false, - "downlevelIteration": true, "noImplicitOverride": true, "useDefineForClassFields": false, "lib": ["ES2022", "DOM"], From a32bf1c7463c5c805fe61e3dd4a92e12c93e0939 Mon Sep 17 00:00:00 2001 From: britsta Date: Wed, 27 May 2026 11:42:33 +0200 Subject: [PATCH 3/4] chore: remove moduleResolution option --- packages/tsconfig.base.json | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/tsconfig.base.json b/packages/tsconfig.base.json index 3904fd702..d4032556d 100644 --- a/packages/tsconfig.base.json +++ b/packages/tsconfig.base.json @@ -11,7 +11,6 @@ "esModuleInterop": true, "experimentalDecorators": true, "resolveJsonModule": true, - "moduleResolution": "node", "forceConsistentCasingInFileNames": true, "noImplicitReturns": true, "strictNullChecks": true, From d1b8bb81f2b86f0b515529cef60a415b0258b5be Mon Sep 17 00:00:00 2001 From: britsta Date: Wed, 27 May 2026 12:02:54 +0200 Subject: [PATCH 4/4] fix: broken import --- .../runtime/test/dataViews/PeerIdentityAttributeDVO.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime/test/dataViews/PeerIdentityAttributeDVO.test.ts b/packages/runtime/test/dataViews/PeerIdentityAttributeDVO.test.ts index db83c16b3..1245b2969 100644 --- a/packages/runtime/test/dataViews/PeerIdentityAttributeDVO.test.ts +++ b/packages/runtime/test/dataViews/PeerIdentityAttributeDVO.test.ts @@ -1,5 +1,5 @@ import { AbstractStringJSON, IdentityAttributeJSON } from "@nmshd/content"; -import { PeerIdentityAttributeDVO } from "src"; +import { PeerIdentityAttributeDVO } from "../../src"; import { ensureActiveRelationship, executeFullCreateAndShareOwnIdentityAttributeFlow, RuntimeServiceProvider, TestRuntimeServices } from "../lib"; const serviceProvider = new RuntimeServiceProvider();