├── .editorconfig ├── .firebase ├── hosting.ZGlzdFxicm93c2Vy.cache └── hosting.ZGlzdFxteWFwcA.cache ├── .firebaserc ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── firebase.json ├── karma.conf.js ├── ngsw-config.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── board │ │ ├── board.component.html │ │ ├── board.component.scss │ │ ├── board.component.spec.ts │ │ └── board.component.ts │ └── square │ │ ├── square.component.spec.ts │ │ └── square.component.ts ├── assets │ ├── .gitkeep │ └── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── manifest.webmanifest ├── polyfills.ts ├── styles.scss ├── test.ts └── themes.scss ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/.editorconfig -------------------------------------------------------------------------------- /.firebase/hosting.ZGlzdFxicm93c2Vy.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/.firebase/hosting.ZGlzdFxicm93c2Vy.cache -------------------------------------------------------------------------------- /.firebase/hosting.ZGlzdFxteWFwcA.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/.firebase/hosting.ZGlzdFxteWFwcA.cache -------------------------------------------------------------------------------- /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/firebase.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/karma.conf.js -------------------------------------------------------------------------------- /ngsw-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/ngsw-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/board/board.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/board/board.component.html -------------------------------------------------------------------------------- /src/app/board/board.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/board/board.component.scss -------------------------------------------------------------------------------- /src/app/board/board.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/board/board.component.spec.ts -------------------------------------------------------------------------------- /src/app/board/board.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/board/board.component.ts -------------------------------------------------------------------------------- /src/app/square/square.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/square/square.component.spec.ts -------------------------------------------------------------------------------- /src/app/square/square.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/app/square/square.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /src/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /src/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /src/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /src/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /src/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /src/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /src/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/manifest.webmanifest -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/themes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/src/themes.scss -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fireship-io/angular-tic-tac-toe/HEAD/tslint.json --------------------------------------------------------------------------------