Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/harryxiong24/rollup-ts-kit-start

A template for quickly developing kits with Typescript and Rollup.
https://github.com/harryxiong24/rollup-ts-kit-start

Last synced: about 1 month ago
JSON representation

A template for quickly developing kits with Typescript and Rollup.

Awesome Lists containing this project

README

        

# rollup-ts-kit-starter

## Description

A template for quickly developing kits with Typescript and Rollup.

## Usage

```bash
# Clone it from Github.
$ git clone https://github.com/HarryXiong24/rollup-ts-kit-starter.git
$ cd rollup-ts-kit-starter
```

```bash
# If you want to use yarn.
yarn install
yarn dev
yarn build
```

```bash
# If you want to use npm.
npm install
npm run dev
npm run build
```

### Hint

The simple example is located in the examples folder, so the packaging file entry set by Webpack is located in index.ts under the examples folder.

The file in the directory under src is just an empty file. Please modify it yourself according to your needs.