Answers for "ts import json"

5

Cannot find module './data.json'. Consider using '--resolveJsonModule' to import module with '.json' extension

add to tsconfig.json

{
	...
    "resolveJsonModule": true
  }
}
Posted by: Guest on July-30-2020
1

import json typescript

// add this in your tsconfig.json file:
{
  "compilerOptions": {
    "resolveJsonModule": true
  }
}
Posted by: Guest on October-01-2021
0

--resolveJsonModule

declare module "*.json" {
  const value: any;
  export default value;
}
Posted by: Guest on November-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language