I'm developing a software using typescript 2.0.3 and tslint 4.0.2 and angular.
I have an issue since my import url is too long for tslint standard. Changing line limit in tslint is not possible in my case.
I tried separate the url to pieces and concatenate them, but it doesn't work.
Basically this is what I have:
import { blabla } from
'./really long string (around 200 characters)';
and this is what I need:
import { blabla } from
'100 characters here' + '100 characters there';
Any suggestions?