import {BaseException} from '@angular/core/src/facade/exceptions'; import {bootstrap} from '@angular/platform-browser'; import {Component} from '@angular/core'; @Component({ selector: 'error-app', template: ` ` }) export class ErrorComponent { createError(): void { throw new BaseException('Sourcemap test'); } } export function main() { bootstrap(ErrorComponent); }