Hey @db-tester! While adding the import path, you need to specify the path to the parent folder from which you are importing the proto file.
For example, given the following project structure, where root.proto
contains the import statement import "x/y/z.proto"
, you need to add /my-app
as the import path.
my-app/
├─ root.proto
├─ x/
│ ├─ y/
│ │ ├─ z.proto
In your case, adding the path to the parent folder of protos
should do the trick!