hive icon indicating copy to clipboard operation
hive copied to clipboard

Enhance typings for .scss files

Open fxlrnrpt opened this issue 5 years ago • 0 comments

Currently, we use a global type declaration

declare module '*.scss' {
  const classes: { [key: string]: string }
  export default classes
}

We need to proper types generated for the .scss files. Ideally, we should not generate appropriate .d.ts files, but somehow help the TS compiler process .scss files directly (research TSC addon/extension functionality).

fxlrnrpt avatar Oct 17 '20 11:10 fxlrnrpt