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'.
The text was updated successfully, but these errors were encountered:
Automatically closing this issue for housekeeping purposes. The issue labels indicate that it is unactionable at the moment or has already been addressed.
TypeScript Version: 2.3
When checkJS is enabled,
require
ing a JSON file in a js src file is treated as an error.Code
Expected behavior:
config
is treated as a var of typeany
, 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'
.The text was updated successfully, but these errors were encountered: