├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── browserslist ├── capacitor.config.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── ionic.config.json ├── karma.conf.js ├── package.json ├── resources ├── icon.png └── splash.png ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── now-playing │ │ ├── now-playing-routing.module.ts │ │ ├── now-playing.module.ts │ │ ├── now-playing.page.html │ │ ├── now-playing.page.scss │ │ ├── now-playing.page.spec.ts │ │ └── now-playing.page.ts │ ├── playlist │ │ ├── playlist-routing.module.ts │ │ ├── playlist.module.ts │ │ ├── playlist.page.html │ │ ├── playlist.page.scss │ │ ├── playlist.page.spec.ts │ │ └── playlist.page.ts │ ├── tab1 │ │ ├── tab1-routing.module.ts │ │ ├── tab1.module.ts │ │ ├── tab1.page.html │ │ ├── tab1.page.scss │ │ ├── tab1.page.spec.ts │ │ └── tab1.page.ts │ ├── tab2 │ │ ├── tab2-routing.module.ts │ │ ├── tab2.module.ts │ │ ├── tab2.page.html │ │ ├── tab2.page.scss │ │ ├── tab2.page.spec.ts │ │ └── tab2.page.ts │ ├── tab3 │ │ ├── tab3-routing.module.ts │ │ ├── tab3.module.ts │ │ ├── tab3.page.html │ │ ├── tab3.page.scss │ │ ├── tab3.page.spec.ts │ │ └── tab3.page.ts │ ├── tab4 │ │ ├── tab4-routing.module.ts │ │ ├── tab4.module.ts │ │ ├── tab4.page.html │ │ ├── tab4.page.scss │ │ ├── tab4.page.spec.ts │ │ └── tab4.page.ts │ └── tabs │ │ ├── tabs-routing.module.ts │ │ ├── tabs.module.ts │ │ ├── tabs.page.html │ │ ├── tabs.page.scss │ │ ├── tabs.page.spec.ts │ │ └── tabs.page.ts ├── assets │ ├── icon │ │ └── favicon.png │ ├── img │ │ ├── avatars │ │ │ ├── 1.jpg │ │ │ ├── 10.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── 8.jpg │ │ │ └── 9.jpg │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ ├── img_4.png │ │ └── img_5.png │ └── shapes.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── sass │ ├── app.scss │ ├── dark.scss │ ├── fonts.scss │ ├── scrollHorizontal.scss │ └── variables.override.scss ├── test.ts ├── theme │ └── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/browserslist -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/ionic.config.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/now-playing/now-playing-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/now-playing/now-playing-routing.module.ts -------------------------------------------------------------------------------- /src/app/now-playing/now-playing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/now-playing/now-playing.module.ts -------------------------------------------------------------------------------- /src/app/now-playing/now-playing.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/now-playing/now-playing.page.html -------------------------------------------------------------------------------- /src/app/now-playing/now-playing.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/now-playing/now-playing.page.scss -------------------------------------------------------------------------------- /src/app/now-playing/now-playing.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/now-playing/now-playing.page.spec.ts -------------------------------------------------------------------------------- /src/app/now-playing/now-playing.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/now-playing/now-playing.page.ts -------------------------------------------------------------------------------- /src/app/playlist/playlist-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/playlist/playlist-routing.module.ts -------------------------------------------------------------------------------- /src/app/playlist/playlist.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/playlist/playlist.module.ts -------------------------------------------------------------------------------- /src/app/playlist/playlist.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/playlist/playlist.page.html -------------------------------------------------------------------------------- /src/app/playlist/playlist.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/playlist/playlist.page.scss -------------------------------------------------------------------------------- /src/app/playlist/playlist.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/playlist/playlist.page.spec.ts -------------------------------------------------------------------------------- /src/app/playlist/playlist.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/playlist/playlist.page.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab1/tab1-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab1/tab1.module.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab1/tab1.page.html -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab1/tab1.page.scss -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab1/tab1.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab1/tab1.page.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab2/tab2-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab2/tab2.module.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab2/tab2.page.html -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab2/tab2.page.scss -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab2/tab2.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab2/tab2.page.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab3/tab3-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab3/tab3.module.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab3/tab3.page.html -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab3/tab3.page.scss -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab3/tab3.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab3/tab3.page.ts -------------------------------------------------------------------------------- /src/app/tab4/tab4-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab4/tab4-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab4/tab4.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab4/tab4.module.ts -------------------------------------------------------------------------------- /src/app/tab4/tab4.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab4/tab4.page.html -------------------------------------------------------------------------------- /src/app/tab4/tab4.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab4/tab4.page.scss -------------------------------------------------------------------------------- /src/app/tab4/tab4.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab4/tab4.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab4/tab4.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tab4/tab4.page.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tabs/tabs-routing.module.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tabs/tabs.module.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tabs/tabs.page.html -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tabs/tabs.page.scss -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tabs/tabs.page.spec.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/app/tabs/tabs.page.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/img/avatars/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/1.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/10.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/11.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/12.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/2.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/3.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/4.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/5.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/6.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/7.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/8.jpg -------------------------------------------------------------------------------- /src/assets/img/avatars/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/avatars/9.jpg -------------------------------------------------------------------------------- /src/assets/img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/img_1.png -------------------------------------------------------------------------------- /src/assets/img/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/img_2.png -------------------------------------------------------------------------------- /src/assets/img/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/img_3.png -------------------------------------------------------------------------------- /src/assets/img/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/img_4.png -------------------------------------------------------------------------------- /src/assets/img/img_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/img/img_5.png -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/sass/app.scss -------------------------------------------------------------------------------- /src/sass/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/sass/dark.scss -------------------------------------------------------------------------------- /src/sass/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/sass/fonts.scss -------------------------------------------------------------------------------- /src/sass/scrollHorizontal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/sass/scrollHorizontal.scss -------------------------------------------------------------------------------- /src/sass/variables.override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/sass/variables.override.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-spotify/HEAD/tslint.json --------------------------------------------------------------------------------