After following the guide for adding Typescript here I was still getting the following error when trying to import from a CSS module
(!) Plugin typescript: @rollup/plugin-typescript TS2307: Cannot find module './Component.module.scss' or its corresponding type declarations.
src/components/Component/Component.tsx: (3:20)
import styles from "./Component.module.scss"
I fixed this by adding a typings.d.ts file to the src directory with the following contents:
After following the guide for adding Typescript here I was still getting the following error when trying to import from a CSS module
I fixed this by adding a
typings.d.ts
file to thesrc
directory with the following contents:I based this solution on this SO thread.
Hopefully this can be added to this project and help others. Thanks!