Answers for "cannot find module './background/wave.svg' or its corresponding type declarations.ts(2307)"

2

Cannot find module '../../images/home.svg' or its corresponding type declarations

// custom.d.ts on root /

declare module '*.svg?inline' {
  const content: any
  export default content
}

declare module '*.svg' {
  const content: any
  export default content
}
Posted by: Guest on August-08-2020

Code answers related to "cannot find module './background/wave.svg' or its corresponding type declarations.ts(2307)"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language