From 51b8b9f008c845ccc77dea0eb254f3ce0f64e0ec Mon Sep 17 00:00:00 2001 From: Rokojori Date: Fri, 17 Jul 2026 13:47:43 +0200 Subject: [PATCH] Fixed Build Errors --- tsconfig.client.json | 2 +- tsconfig.json | 6 +++++- tsconfig.ts-node.json | 6 +----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tsconfig.client.json b/tsconfig.client.json index c5eb887..3ab0338 100644 --- a/tsconfig.client.json +++ b/tsconfig.client.json @@ -12,7 +12,7 @@ "rootDir": "source" }, "include": ["source/**/*"], - "exclude": ["source/library-ts/**/*"], + "exclude": ["source/library-ts/**/*", "source/server/**/*", "source/auth-connector/**/*"], "references": [ { "path": "./source/library-ts/browser/tsconfig.roject.json" } ] diff --git a/tsconfig.json b/tsconfig.json index 794b179..ecf4f3d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,11 @@ "strict": true, "esModuleInterop": true, "skipLibCheck": true, - "outDir": "dist" + "outDir": "dist", + "baseUrl": ".", + "paths": { + "auth-connector/*": ["./source/auth-connector/source/*"] + } }, "include": ["source/server/**/*"] } diff --git a/tsconfig.ts-node.json b/tsconfig.ts-node.json index e475351..5d1b457 100644 --- a/tsconfig.ts-node.json +++ b/tsconfig.ts-node.json @@ -1,11 +1,7 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "strictNullChecks": false, - "baseUrl": ".", - "paths": { - "auth-connector/*": ["./source/auth-connector/source/*"] - } + "strictNullChecks": false }, "include": ["source/server/**/*", "source/library-ts/node/**/*"] }