Answers for "Include modules imported with '.json' extension. Requires TypeScript version 2.9 or later."

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
-2

how to import a json string from a file in typescript

import {default as a} from "a.json";
a.primaryMain
Posted by: Guest on June-16-2020

Code answers related to "Include modules imported with '.json' extension. Requires TypeScript version 2.9 or later."

Code answers related to "Javascript"

Browse Popular Code Answers by Language