{"version":3,"file":"my-module.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":[],"mappings":";;;;;;;;AAAA,MAKa,eAAe;IAE1B,iBAAiB;;;YALlB,UAAU,SAAC;gBACV,UAAU,EAAE,MAAM;aACnB;;;;;;;;;;ACJD,MAWa,iBAAiB;IAE5B,iBAAiB;;;;IAEjB,QAAQ;KACP;;;YAdF,SAAS,SAAC;gBACT,QAAQ,EAAE,gBAAgB;gBAC1B,QAAQ,EAAE;;;;GAIT;aAEF;;;;;;;;;ACVD,MASa,cAAc;;;YAN1B,QAAQ,SAAC;gBACR,YAAY,EAAE,CAAC,iBAAiB,CAAC;gBACjC,OAAO,EAAE,EACR;gBACD,OAAO,EAAE,CAAC,iBAAiB,CAAC;aAC7B;;;;;;;ACRD,MAQa,cAAc;IAIzB,iBAAiB;;;;IAEjB,QAAQ;QAEN,KAAK,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,SAAS,CAAC,CAAC;YACxB,IAAI,CAAC,WAAW,GAAG,EAAE,GAAG,IAAI,IAAI,EAAE,CAAC;SACpC,CAAC,CAAC;KAEJ;;;YAjBF,SAAS,SAAC;gBACT,QAAQ,EAAE,UAAU;gBACpB,mGAAqC;;aAEtC;;;;;;;;;ACPD,MAWa,WAAW;;;YAPvB,QAAQ,SAAC;gBACR,YAAY,EAAE,CAAC,cAAc,CAAC;gBAC9B,OAAO,EAAE;oBACP,iBAAiB;iBAClB;gBACD,OAAO,EAAE,CAAC,cAAc,CAAC;aAC1B;;;;;;;;;;;;;;;;;;;;;;;;;"}