typescript can't find module less

12,384

Solution 1

Just create a new declaration file (externals.d.ts) with declare module '*.less'.

Edit If you are using css-modules, you can define these types to match the return value:

declare module '*.less' {
  const resource: {[key: string]: string};
  export = resource;
}

Add that file to the includes array of your tsconfig.json file.

// tsconfig.json
{
   compilerOptions: {...}
   includes: [
      './path/to/the/new/file/externals.d.ts'
   ]
}

Solution 2

Add to src/react-app-env.d.ts or declaration.d.ts

declare module '*.less';

or if you use css-modules

declare module '*.module.less' {
  const classes: { [className: string]: string };
  export default classes;
}
Share:
12,384
pssgo
Author by

pssgo

Updated on July 15, 2022

Comments

  • pssgo
    pssgo almost 2 years

    enter image description here

    I use react and webpack to build web SPA but, typescript can't find resolve the less file

    enter image description here

    work file like this ⬆️

  • ankhzet
    ankhzet almost 6 years
    Killed couple of hours, trying to solve this %) Thank you for help!