Experimenting with this template revealed that the package tsd was outdated and replaced by typings, prompting an upgrade.
Here are the current packages in use:
After switching to typings, the type definitions for Angular were updated causing compilation issues with TypeScript files due to error code TS2339
.
For instance:
[14:15:05] Bundle error: src/features/beef/beef.controller.ts(18,9): Error TS2339: Property 'module' does not exist on type 'IAngularStatic'.
The same error was indicated by Visual Studio Code even after downloading the definition file from the Github repo's HEAD, which matches the one installed through typings.
Therefore, my inquiry is - could this be a flaw in the definition? Is there a resolution available?