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 } } ```
10 lines
257 B
TypeScript
10 lines
257 B
TypeScript
import {Component} from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'hello-world-app',
|
|
template: `<div i18n="desc|meaning" title="i18n attribute should be removed">Hello {{ name }}!</div>`,
|
|
})
|
|
export class HelloWorldComponent {
|
|
name: string = 'world';
|
|
}
|