Sanshain / preact-boilerplate

preact boilerplate
0 stars 0 forks source link

Cannot find module './style.module.css' or its corresponding type declarations #14

Closed Sanshain closed 1 month ago

Sanshain commented 1 month ago

Trouble:

Typescript swears on existing file on css modules using

Resolve:

Create global.d.ts with content as next:

// declaration.d.ts
declare module '*.css' {
    const content: Record<string, string>;
    export default content;
}