I have a constants file constants.ts:
export const C0NST = \"constant\";
I access it in a service some.service.ts<
The scope of Angular2 template bindings is the component instance. Only what's accessible there can be used in bindings.
You can make it available like
class MyComponent { myConst = CONST; }
{{myConst}}