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 } } ```
12 lines
304 B
TypeScript
12 lines
304 B
TypeScript
import {HelloWorldComponent} from './hello-world.component';
|
|
|
|
import {NgModule} from '@angular/core';
|
|
import {BrowserModule} from '@angular/platform-browser';
|
|
|
|
@NgModule({
|
|
declarations: [HelloWorldComponent],
|
|
bootstrap: [HelloWorldComponent],
|
|
imports: [BrowserModule],
|
|
})
|
|
export class AppModule {}
|