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