Simple starter project for getting quickly started with TypeScript via Webpack.
Go to file Use this template
James Skemp e599dfb501 Add repo link to package.json and license file 2023-07-15 17:36:32 -05:00
dist Fix index page to stop loading lodash 2023-05-05 04:28:13 -05:00
src Add basic template for webpack and TypeScript 2023-05-02 07:38:31 -05:00
.gitignore Add basic template for webpack and TypeScript 2023-05-02 07:38:31 -05:00
LICENSE.md Add repo link to package.json and license file 2023-07-15 17:36:32 -05:00
README.md Fix file name formatting in README 2023-05-05 09:36:54 +00:00
package-lock.json Update all outdated packages 2023-07-15 17:36:03 -05:00
package.json Add repo link to package.json and license file 2023-07-15 17:36:32 -05:00
tsconfig.json Add basic template for webpack and TypeScript 2023-05-02 07:38:31 -05:00
webpack.config.js Add basic template for webpack and TypeScript 2023-05-02 07:38:31 -05:00

README.md

Webpack + TypeScript Template

This repo contains a simple template with TypeScript and Webpack setup.

TypeScript code can be added to the src directory and built into the dist directory by running npm run build or npm run build:dev from the root directory.

Getting Started

  • Customize package.json.
  • Update all instances of webpack-typescript-template in the code.
  • Run npm install from the root directory.
  • Run npm run build:dev to verify that a development build can be generated. A new bundle.js file should be created in the dist directory.

Next Steps

  • Customize index.ts and add additional files to the src directory as needed.
  • If desired, install additonal webpack plugins, such as to handle HTML files.