This repository contains an example of a BABYLON.js 5 application in TypeScript with a TypeScript Webpack configuration.
Run the following commands from within the repository's root folder to setup the application:
npm install
Run the following commands from within the repository's root folder to run the
project using webpack-dev-server
:
npm start
Then open http://localhost:8080 in your browser
Run the following commands from within the repository's root folder to build the
project using webpack
:
npm run build
-
src/
source code folderapp.ts
application entry point
-
public
folder containing static assetsindex.html
HTML entry point
-
dist
folder containing output of build process