I got a similar error, following the angular 2 docs for angular cli and webpack:
ERROR in Error encountered resolving symbol values statically. Reference to a no
n-exported class RavenErrorHandler. Consider exporting the class (position 45:1
in the original .ts file), resolving symbol AppModule in D:/dev/COE/COEStudentAP
I/src/WebUI/src/app/app.module.ts
The offending line seemed to be:
class RavenErrorHandler implements ErrorHandler {`
and the answer for me was to prepend ‘export’ to the class:
export class RavenErrorHandler implements ErrorHandler {