diff --git a/projects/ngx-linkifyjs/src/lib/service/ngx-linkifyjs.service.spec.ts b/projects/ngx-linkifyjs/src/lib/service/ngx-linkifyjs.service.spec.ts index e03a4e6f..1c7b1929 100644 --- a/projects/ngx-linkifyjs/src/lib/service/ngx-linkifyjs.service.spec.ts +++ b/projects/ngx-linkifyjs/src/lib/service/ngx-linkifyjs.service.spec.ts @@ -7,7 +7,8 @@ import * as hashtag from 'linkifyjs/plugins/hashtag'; import * as mention from 'linkifyjs/plugins/mention'; import {NgxLinkifyjsService} from './ngx-linkifyjs.service'; -import {Link, LinkType} from '..'; +import {LinkType} from '../enum/linktype.enum'; +import {Link} from '../interfaces/ngx-linkifyjs.interface'; describe('NgxLinkifyjsService without importing hashtag/mention', () => { beforeEach(() => { diff --git a/static.paths.ts b/static.paths.ts new file mode 100644 index 00000000..f700c61f --- /dev/null +++ b/static.paths.ts @@ -0,0 +1,3 @@ +export const ROUTES = [ + '/', +];