-
I am just getting started with typescript and seem to be running into an issue using CSS Modules. I started out with this error "Cannot find module './app.module.scss' or its corresponding type declarations." and after some googling, have added a
However, I now seem to be stuck between parcel building and typescript compiling:
I haven't been able to find the resolution to this yet, however, it seems like it would be a pretty common thing to run into. Has anyone faced this before/have any suggestions? I realize I can ignore the bundler warnings, however that would be very noisy and overtime could lead to missing more important build issues. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There are some examples in this issue how to tell Typescript about |
Beta Was this translation helpful? Give feedback.
There are some examples in this issue how to tell Typescript about
import * as styles
: #7264