Is it a feasible option to enable intellisense functionality within a Gruntfile?
Given that 'grunt' is not defined globally but serves as a parameter in the Gruntfile, VSCode may interpret it as an unspecified function parameter 'any'.
module.exports = function(grunt) {...}
When I specify the type for the parameter, intellisense functions properly. However, the issue arises with 'grunt' since it's JavaScript and not TypeScript.
module.exports = function(grunt: IGrunt) {...}