Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harryxiong24/webpack-ts-start
A template for quickly developing projects with Typescript and Webpack.
https://github.com/harryxiong24/webpack-ts-start
Last synced: about 1 month ago
JSON representation
A template for quickly developing projects with Typescript and Webpack.
- Host: GitHub
- URL: https://github.com/harryxiong24/webpack-ts-start
- Owner: HarryXiong24
- License: mit
- Created: 2020-07-18T07:40:51.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-02T23:19:41.000Z (almost 2 years ago)
- Last Synced: 2023-03-06T15:22:19.829Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 1.41 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webpack-ts-start
## Description
A template for quickly developing projects with Typescript and Webpack.
## Usage
```bash
# Clone it from Github.
$ git clone https://github.com/HarryXiong24/webpack-ts-start.git
$ cd webpack-ts-start
``````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.