This commit is contained in:
Max Peintner
2023-04-04 15:35:41 +02:00
parent 25aec6078e
commit bfc6b33ed0
3 changed files with 5 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ plugins:
- name: ts
strategy: all
path: node_modules/ts-proto/protoc-gen-ts_proto
out: src/server
out: proto/src/server
opt:
- esModuleInterop=true
- env=node
@@ -17,7 +17,7 @@ plugins:
# out: src/app/proto/generated
# opt: import_style=commonjs,binary
- plugin: buf.build/grpc/web
out: src/client
out: proto/src/client
opt: import_style=typescript,mode=grpcweb
# - plugin: buf.build/grpc-ecosystem/openapiv2
# out: src/app/proto/generated

View File

@@ -1,5 +1,8 @@
{
"extends": "@zitadel/tsconfig/react-library.json",
"include": ["."],
"compilerOptions": {
"baseUrl": "."
},
"exclude": ["dist", "build", "node_modules"]
}