fixed build
This commit is contained in:
parent
a984733b9b
commit
5904af213f
2 changed files with 14 additions and 3 deletions
|
|
@ -113,7 +113,7 @@ export {
|
||||||
|
|
||||||
// If this file is run directly, execute the demo
|
// If this file is run directly, execute the demo
|
||||||
if (import.meta.main) {
|
if (import.meta.main) {
|
||||||
// demonstrateProxyService()
|
demonstrateProxyService()
|
||||||
demonstrateCustomProxySource()
|
// demonstrateCustomProxySource()
|
||||||
.catch(console.error);
|
.catch(console.error);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,10 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"rootDir": "./src",
|
"rootDir": "./src",
|
||||||
"declaration": true
|
"declaration": true,
|
||||||
|
"moduleResolution": "bundler",
|
||||||
|
"allowSyntheticDefaultImports": true,
|
||||||
|
"esModuleInterop": true
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*"
|
"src/**/*"
|
||||||
|
|
@ -14,4 +17,12 @@
|
||||||
"**/*.test.ts",
|
"**/*.test.ts",
|
||||||
"**/*.spec.ts"
|
"**/*.spec.ts"
|
||||||
],
|
],
|
||||||
|
"references": [
|
||||||
|
{ "path": "../../libs/config" },
|
||||||
|
{ "path": "../../libs/logger" },
|
||||||
|
{ "path": "../../libs/http-client" },
|
||||||
|
{ "path": "../../libs/types" },
|
||||||
|
{ "path": "../../libs/cache" },
|
||||||
|
{ "path": "../../libs/utils" }
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue