Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to webpack 5 and typescript 3 #28

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
Webpack 4 + TypeScript starter
Webpack 5 + TypeScript starter
------------------------------

[![Build Status](https://travis-ci.org/juristr/webpack-typescript-starter.svg?branch=master)](https://travis-ci.org/juristr/webpack-typescript-starter)

This is by far no sophisticated starter or whatever. The goal is to get the simplest possible setup to get you started with Webpack 4 and TypeScript. You can then start from here and add further stuff you need, such as SASS compilation, add framework specific stuff etc.
This is by far no sophisticated starter or whatever. The goal is to get the simplest possible setup to get you started with Webpack 5 and TypeScript. You can then start from here and add further stuff you need, such as SASS compilation, add framework specific stuff etc.

Also check out the official Webpack 4 docs for a proper TypeScript setup: https://webpack.js.org/guides/typescript/
Also check out the official Webpack 5 docs for a proper TypeScript setup: https://webpack.js.org/guides/typescript/

_Note, this is still a WIP. Contributions/suggestions are welcome :smiley:_

## Features

- [x] Webpack 4
- [x] TypeScript 2 compilation
- [x] Webpack 5
- [x] TypeScript 3 compilation
- [x] ts-lint
- [x] Webpack Development Server
- [x] Karma and Jasmine test execution
Expand All @@ -23,7 +23,7 @@ Just clone it and get going.

```
# --depth 1 removes all but one .git commit history
$ git clone --depth=1 https://github.com/juristr/webpack-typescript-starter.git <your-project-name>
$ git clone --depth=1 https://github.com/ranbuch/webpack-typescript-starter.git <your-project-name>

# change directory to your project
cd <your-project-name>
Expand All @@ -33,7 +33,7 @@ cd <your-project-name>
# install all dependencies.
$ npm i

# Start developing and serve your app:
# Start developing and serve your app (http://localhost:8080/index.html):
npm start

# Build your app without minification:
Expand Down
Loading