TS2732
Cannot find module '../../package.json'. Consider using '--resolveJsonModule' to import module with '.json' extension.
Broken Code ❌
import pkg from '../../package.json';Fixed Code ✔️
To fix the issue and allow importing JSON files, you have to set "resolveJsonModule" to true in your "tsconfig.json" file.
