+3 votes
in Others by (300 points)
This error occurs when we use modules from another micro app

1 Answer

+1 vote
by (300 points)
Using:

- Create a file index.d.ts in the app-shell

- add like this

  declare module "reactApp/*"

  declare module "vueApp/*"

  declare module "svelteApp/*"

  ...

- in tsconfig.json add new like this line

 "include": ["src", "index.d.ts"]
Welcome to Qtsd Q&A, where you can ask questions and receive answers from other members of the community.
...