Fixed Build Errors
This commit is contained in:
parent
a8bfc95d1c
commit
51b8b9f008
|
|
@ -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" }
|
||||||
]
|
]
|
||||||
|
|
|
||||||
|
|
@ -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/**/*"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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/**/*"]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue