gitextract_qt_pvz36/ ├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── demo/ │ ├── .gitignore │ ├── README.md │ ├── esm/ │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app.component.ts │ │ │ │ └── app.module.ts │ │ │ ├── index.ejs │ │ │ ├── main-aot.ts │ │ │ ├── main-jit.ts │ │ │ └── polyfills.browser.ts │ │ ├── tsconfig-aot.json │ │ ├── tsconfig.json │ │ ├── webpack-aot.config.js │ │ └── webpack.config.js │ ├── gulpfile.js │ ├── package.json │ └── umd/ │ ├── app/ │ │ ├── app.component.ts │ │ └── app.module.ts │ ├── index.html │ ├── main.ts │ └── systemjs.config.js ├── gulpfile.js ├── karma-test-entry.ts ├── karma.conf.ts ├── package.json ├── src/ │ ├── components/ │ │ ├── index.ts │ │ └── tick-tock/ │ │ ├── index.ts │ │ ├── tick-tock.component.html │ │ ├── tick-tock.component.scss │ │ ├── tick-tock.component.spec.ts │ │ └── tick-tock.component.ts │ ├── index.ts │ ├── services/ │ │ ├── index.ts │ │ └── tick-tock/ │ │ ├── index.ts │ │ ├── tick-tock.service.spec.ts │ │ └── tick-tock.service.ts │ └── tick-tock.module.ts ├── tsconfig-aot.json ├── tsconfig.json ├── tslint.json ├── webpack-test.config.ts └── webpack-umd.config.ts