Files
hub-monorepo/packages/hub-web/tsconfig.json
PangZhi 3ac5315fd5 feat: add hub-web package to only depend on grpc-web (#797)
* 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
2023-04-03 11:35:08 -07:00

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"]
}