1- # vue-webpack-boilerplate
1+ # vue-webpack-typescript- boilerplate
22
3- > A full-featured Webpack setup with hot-reload, lint-on-save, unit testing & css extraction.
3+ > A full-featured Webpack setup with TypeScript, hot-reload, lint-on-save, unit testing & css extraction.
44
55### Usage
66
@@ -21,6 +21,9 @@ $ npm run dev
2121├── package.json # build scripts and dependencies
2222├── .babelrc # babel configuration
2323├── .eslintrc.js # eslint configuration
24+ ├── tsconfig.json # TypeScript configuration
25+ ├── tsd.json # tsd configuration
26+ ├── tslint.json # tslint configuration
2427├── build
2528│ ├── dev-server.js # development server script
2629│ ├── karma.conf.js # unit testing config
@@ -29,8 +32,9 @@ $ npm run dev
2932│ └── webpack.prod.conf.js # production webpack config
3033├── src
3134│ ├── index.html # main html file
32- │ ├── main.js # app entry file
33- │ ├── App.vue # main app component
35+ │ ├── main.ts # app entry file
36+ │ ├── App.ts # main app component
37+ │ ├── App.html # main app component template
3438│ ├── components # ui components
3539│ │ └── ...
3640│ └── assets # static assets
0 commit comments