rosslavery / angular2-tag-input

Tag input component for Angular 2
45 stars 42 forks source link

Cant install it over Quickstart app. #17

Open DTX-92 opened 7 years ago

DTX-92 commented 7 years ago

https://github.com/angular/quickstart

Should i add something to system.config.js? I tried adding map: { 'angular2-tag-input': 'angular2-tag-input' }, packages: { 'angular2-tag-input': { main: './index.js' } } image

Then i moved it from /node_modules to root folder to compile js files from ts and moved it back. Result: image Then i change index.ts from export { RlTagInputModule } from './dist/lib/tag-input.module'; export { TagInputComponent } from './dist/lib/tag-input/tag-input.component'; to export { RlTagInputModule } from './lib/tag-input.module'; export { TagInputComponent } from './lib/tag-input/tag-input.component'; image Am I doing something wrong?