mirror of
https://github.com/farcasterxyz/hub-monorepo.git
synced 2026-04-18 03:00:22 -04:00
* add new hub-web package and generate code from grpc-web * expose RpcWebClient * add envoy support * update readme and changelog * add changeset * move envoy to apps/hubble and fix service name * reduce the code generation from protoc to only rpc.proto
15 lines
386 B
JSON
15 lines
386 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"baseUrl": "./src",
|
|
"outDir": "build",
|
|
"rootDir": "src",
|
|
"isolatedModules": true,
|
|
// override this setting to be compatible with grpc-web output
|
|
"exactOptionalPropertyTypes": false
|
|
},
|
|
"include": ["src/index.ts"],
|
|
"exclude": ["build", "node_modules", "jest.config.ts"]
|
|
}
|