Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chaudhuree/typescript-simplified
https://github.com/chaudhuree/typescript-simplified
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/chaudhuree/typescript-simplified
- Owner: chaudhuree
- Created: 2024-01-14T16:37:23.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-15T23:59:46.000Z (10 months ago)
- Last Synced: 2024-01-16T02:44:03.232Z (10 months ago)
- Language: TypeScript
- Size: 58.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```