├── .gitignore ├── README.md ├── favicon.svg ├── index.html ├── package.json ├── pnpm-lock.yaml ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.ts │ ├── app.module.ts │ └── vite-welcome.component.ts ├── main.ts ├── polyfills.ts ├── style.css └── vite-env.d.ts ├── test.ts ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/README.md -------------------------------------------------------------------------------- /favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/favicon.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/vite-welcome.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/src/app/vite-welcome.component.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/src/style.css -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jordan-Hall/vite-angular-template/HEAD/vite.config.ts --------------------------------------------------------------------------------