The source map does not currently work with the transformer pipeline.
It will be re-enabled after TypeScript 2.4 is made the min version.
To revert to the former compiler, use the `disableTransformerPipeline` in
tsconfig.json:
```
{
"angularCompilerOptions": {
"disableTransformerPipeline": true
}
}
```
5 lines
174 B
TypeScript
5 lines
174 B
TypeScript
import {platformBrowser} from '@angular/platform-browser';
|
|
import {AppModuleNgFactory} from './app.ngfactory';
|
|
|
|
platformBrowser().bootstrapModuleFactory(AppModuleNgFactory);
|