Do I need to include the following line for type checking when using fs.readFile in TypeScript?
/// <reference path="node.d.ts" />
Is it considered 'best practice' to download and maintain the most recent version of node.d.ts file in my app's codebase manually?
Alternatively, is there a more efficient and automated way to handle this process?