Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chaudhuree/typescript-simplified


https://github.com/chaudhuree/typescript-simplified

Last synced: 4 days ago
JSON representation

Awesome Lists containing this project

README

        

initialization typescript with bundler

## we will use vite to create typescript file

```bash
npm create vite@latest .
```

- select vanilla
- select typescript

```bash
npm install
```

```bash
npm run dev
```

- to build our code for production level

```bash
npm run build
```

- to see production build

```bash
npm run preview
```