## **Description**
Added support for LESS by installing `less` as a dev dependency.
This enables the use of `.less` files in the project, which can be useful for more advanced styling and variable handling compared to regular CSS.
## **Changes**
- Installed `less` with `npm install -D less`
- Renamed `app.css` and `index.css` to `app.less` and `index.less`
## **Description**
Installed Vite and TypeScript as dev dependencies and added the initial project files.
This sets up the project for TypeScript development with Vite and provides a basic starting structure.
## **Changes**
- commit 01: Installed `vite` and `typescript` as dev dependencies
- commit 02: Added `index.html`, `main.ts`, and `style.css`