Fixed Build Errors

This commit is contained in:
Rokojori 2026-07-17 13:47:43 +02:00
parent a8bfc95d1c
commit 51b8b9f008
3 changed files with 7 additions and 7 deletions

View File

@ -12,7 +12,7 @@
"rootDir": "source" "rootDir": "source"
}, },
"include": ["source/**/*"], "include": ["source/**/*"],
"exclude": ["source/library-ts/**/*"], "exclude": ["source/library-ts/**/*", "source/server/**/*", "source/auth-connector/**/*"],
"references": [ "references": [
{ "path": "./source/library-ts/browser/tsconfig.roject.json" } { "path": "./source/library-ts/browser/tsconfig.roject.json" }
] ]

View File

@ -6,7 +6,11 @@
"strict": true, "strict": true,
"esModuleInterop": true, "esModuleInterop": true,
"skipLibCheck": true, "skipLibCheck": true,
"outDir": "dist" "outDir": "dist",
"baseUrl": ".",
"paths": {
"auth-connector/*": ["./source/auth-connector/source/*"]
}
}, },
"include": ["source/server/**/*"] "include": ["source/server/**/*"]
} }

View File

@ -1,11 +1,7 @@
{ {
"extends": "./tsconfig.json", "extends": "./tsconfig.json",
"compilerOptions": { "compilerOptions": {
"strictNullChecks": false, "strictNullChecks": false
"baseUrl": ".",
"paths": {
"auth-connector/*": ["./source/auth-connector/source/*"]
}
}, },
"include": ["source/server/**/*", "source/library-ts/node/**/*"] "include": ["source/server/**/*", "source/library-ts/node/**/*"]
} }