Nx monorepo implementation #572
Replies: 2 comments 2 replies
-
There's nothing special when setting it up. Are you using a package-based monorepos or integrated? The main thing that will probably confuse you is setting up typescript. TS config files can extend multiple other files, so make sure you keep extending If you need to setup path aliases, like You may also need to disable auto-imports. Hopefully that will get you started. LMK if you have other problems. Here's a PNPM monorepo, a package-based one, as an example: |
Beta Was this translation helpful? Give feedback.
-
Will just add that if you're following some turborepo examples with nextjs and such, they will often put all the typescript config in it's own little package like include: [ "./.wxt/**/*"] (don't forget the two dots ././) This will give you the generated types but nothing else from the wxt tsconfig so you need to make sure that your tsconfig will be able to do what the generated one is doing |
Beta Was this translation helpful? Give feedback.
-
I'm wondering if anyone has some examples on how to implement
wxt
inside an Nx monorepo?Beta Was this translation helpful? Give feedback.
All reactions