You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When checkJS is enabled, requireing a JSON file in a js src file is treated as an error.
Code
constconfig=require('./config.json');
Expected behavior: config is treated as a var of type any, or for bonus points, an anonymous interface with the shape as defined in the relevant JSON file. Actual behavior: error TS2307: Cannot find module './config.json'.