Frontend Starter is a simple, pre-configured setup for frontend development using TypeScript and SCSS. It provides essential tools and configurations to kickstart your project with ease.
- TypeScript: For robust, type-safe JavaScript development.
- SCSS: For enhanced CSS with variables, nesting, and mixins.
- Live Development Server: Instant updates during development.
- Production Builds: Optimized assets ready for deployment.
- Linting: Maintain code quality and consistency.
- Install dependencies:
npm install
Start the development server with live reloading:
npm start
- For development builds:
npm run build:dev
- For production builds:
npm run build:prod
Run all necessary checks and builds for CI:
npm run ci
Check and fix code quality issues:
npm run lint
Contributions are welcome! Open issues or submit pull requests to enhance this starter.
This project is licensed under the MIT License.
Happy coding!