I am not able to import images in my headercomponent.ts. I suspect it is because of something i am doing wrong while compiling ts(using webpack ts loader) because same thin
If you want to use the ES6 syntax for importing.
First be sure that in your tsconfig.json you have:
tsconfig.json
target: 'es5', module: 'es6'
The following should now work:
import MyImage from './images/my-image.png';