Answers for "ts allow import json"

0

ts import json

{
  ...,
  "compilerOptions": {
    ...
    "moduleResolution": "node", // add this line
    "resolveJsonModule": true	// add this line
  },
  "include": ["**/*.ts", "./**/*.json"] // add json path
}
Posted by: Guest on February-09-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language