{"version":3,"file":"my-module.umd.js.map","sources":["ng://my-module/lib/my-module.service.ts","ng://my-module/lib/my-module.component.ts","ng://my-module/lib/my-module.module.ts","ng://my-module/lib/clock-component/clock-component.ts","ng://my-module/lib/clock-component/ClockModule.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class MyModuleService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'vipm-my-module',\n template: `\n <p>\n my-module works!\n </p>\n `,\n styles: []\n})\nexport class MyModuleComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit() {\n }\n\n}\n","import { NgModule } from '@angular/core';\nimport { MyModuleComponent } from './my-module.component';\n\n@NgModule({\n declarations: [MyModuleComponent],\n imports: [\n ],\n exports: [MyModuleComponent]\n})\nexport class MyModuleModule { }\n","import { timer } from 'rxjs';\nimport { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'wc-clock',\n templateUrl: './clock-component.html',\n styleUrls: [ './clock-component.scss' ]\n})\nexport class ClockComponent implements OnInit {\n\n public currentTime:string;\n\n constructor() { }\n\n ngOnInit() {\n\n timer(0, 1000).subscribe(x=>{\n this.currentTime = \"\" + new Date();\n });\n\n }\n\n\n\n}\n","import { NgModule } from '@angular/core';\nimport { ClockComponent } from './clock-component';\nimport { MyFormatterModule } from 'my-formatter';\n\n@NgModule({\n declarations: [ClockComponent],\n imports: [\n MyFormatterModule\n ],\n exports: [ClockComponent]\n})\nexport class ClockModule { }\n\n\n\n\n"],"names":["Injectable","Component","NgModule","timer","MyFormatterModule"],"mappings":";;;;;;;;;;AAAA;QAOE;SAAiB;;oBALlBA,aAAU,SAAC;wBACV,UAAU,EAAE,MAAM;qBACnB;;;;;8BAJD;KAEA;;;;;;ACFA;QAaE;SAAiB;;;;QAEjB,oCAAQ;;;YAAR;aACC;;oBAdFC,YAAS,SAAC;wBACT,QAAQ,EAAE,gBAAgB;wBAC1B,QAAQ,EAAE,iDAIT;qBAEF;;;;QAQD,wBAAC;KAhBD;;;;;;ACFA;QAGA;SAM+B;;oBAN9BC,WAAQ,SAAC;wBACR,YAAY,EAAE,CAAC,iBAAiB,CAAC;wBACjC,OAAO,EAAE,EACR;wBACD,OAAO,EAAE,CAAC,iBAAiB,CAAC;qBAC7B;;QAC6B,qBAAC;KAN/B;;;;;;ACHA;QAYE;SAAiB;;;;QAEjB,iCAAQ;;;YAAR;gBAAA,iBAMC;gBAJCC,UAAK,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,SAAS,CAAC,UAAA,CAAC;oBACxB,KAAI,CAAC,WAAW,GAAG,EAAE,GAAG,IAAI,IAAI,EAAE,CAAC;iBACpC,CAAC,CAAC;aAEJ;;oBAjBFF,YAAS,SAAC;wBACT,QAAQ,EAAE,UAAU;wBACpB,mGAAqC;;qBAEtC;;;;QAiBD,qBAAC;KArBD;;;;;;ACHA;QAIA;SAO4B;;oBAP3BC,WAAQ,SAAC;wBACR,YAAY,EAAE,CAAC,cAAc,CAAC;wBAC9B,OAAO,EAAE;4BACPE,6BAAiB;yBAClB;wBACD,OAAO,EAAE,CAAC,cAAc,CAAC;qBAC1B;;QAC0B,kBAAC;KAP5B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}