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"
},
"include": ["source/**/*"],
"exclude": ["source/library-ts/**/*"],
"exclude": ["source/library-ts/**/*", "source/server/**/*", "source/auth-connector/**/*"],
"references": [
{ "path": "./source/library-ts/browser/tsconfig.roject.json" }
]

View File

@ -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/**/*"]
}

View File

@ -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/**/*"]
}