diff --git a/packages/app-runtime/test/tsconfig.json b/packages/app-runtime/test/tsconfig.json index 84c6ba341..067a4c5b4 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, "types": ["jest", "node"] 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 84c6ba341..067a4c5b4 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, "types": ["jest", "node"] diff --git a/packages/content/test/tsconfig.json b/packages/content/test/tsconfig.json index 84c6ba341..067a4c5b4 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, "types": ["jest", "node"] diff --git a/packages/core-types/test/tsconfig.json b/packages/core-types/test/tsconfig.json index 84c6ba341..067a4c5b4 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, "types": ["jest", "node"] 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(); diff --git a/packages/runtime/test/tsconfig.json b/packages/runtime/test/tsconfig.json index 84c6ba341..067a4c5b4 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, "types": ["jest", "node"] diff --git a/packages/transport/test/tsconfig.json b/packages/transport/test/tsconfig.json index 84c6ba341..067a4c5b4 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, "types": ["jest", "node"] diff --git a/packages/tsconfig.base.json b/packages/tsconfig.base.json index 5ef06cf28..d4032556d 100644 --- a/packages/tsconfig.base.json +++ b/packages/tsconfig.base.json @@ -11,12 +11,10 @@ "esModuleInterop": true, "experimentalDecorators": true, "resolveJsonModule": true, - "moduleResolution": "node", "forceConsistentCasingInFileNames": true, "noImplicitReturns": true, "strictNullChecks": true, "strictPropertyInitialization": false, - "downlevelIteration": true, "noImplicitOverride": true, "useDefineForClassFields": false, "lib": ["ES2022", "DOM"],