This is a project template for Svelte 3 apps using Webpack 5 and Typescript.
You will need to have Node.js installed.
First..
npm install
Start Webpack-dev-server. Navigate to localhost:9000
npm start
Run unit tests
npm test
Run unit tests in watch mode
npm run test:watch
Compile development source code and copy into the public/build directory
npm run build:dev
Compile optimized source code and copy into the public/build directory
npm run build:prod
Manually clean the build directory
npm run clean