Facing issues while running the jsonforms repo locally

Hello everyone. I cloned the jsonforms repo locally and was trying to run the material examples, but I am getting TS errors.

I first ran npm ci in the root directory, then npm run init (which is supposed to install node_modules for all packages) and then finally cd packages/material && npm run dev. Am I missing something here?

[original thread by Mohit Karekar]

[shivgarg5676]

@mohitkarekar You need to run npm run build after running npm run init and then cd packages/material && npm run dev. I think that will solve the issue you are facing.

[Mohit Karekar]

Thanks @shivgarg5676! Worked perfectly.