Sebastian Sebald
Sebastian Sebald
Not an Angular developer, but rather node + TS. Still @thekip saved me a lot of headache with his 3. tip! đ Just here to say thank you!
@hassankhan if you have any problems with the changes in the PR let my know, so I can update it! đ
@nbouvrette Thanks for the fix. After that everything works fine, but we get a warning from typescript after adding the plugin. ``` warn - ../node_modules/.pnpm/[email protected]/node_modules/typescript/lib/typescript.js Critical dependency: the request of...
@krutoo ran into the same issues and guessed it is caused by the conversion to older JS syntax. We could fix these false-positives by targeting a newer ES version. ```...
Of course! Here you go: https://github.com/sebald/eslint-plugin-monorepo-typescript I noticed that I haven't mentioned that we are using `@typescript-eslint`. Sorry about that âšī¸ I guess this is an incompatibility with the plugin?
> The more features fuse-box supports "out of the box" means more technical debt that has to be taken on. The js community is -incredibly fast- paced, so taking on...
@nchanged Please don't! đ No need to reinvent the wheel. The current API + maybe a CLI is more than enough.
@AngelMunoz I did use this repo. Just changed the `fuse.js` to the above mentioned configuration. But the configuration changed since then, so I do not know if my configuration is...
Since TypeScript adheres to the ESModule specification you have to import like ```ts import * as React from 'react'; import * as ReactDOM from 'react-dom'; ```