├── .gitignore ├── LICENSE ├── README.md ├── assets └── croissant.png ├── package.json ├── scripts ├── check-file-size.js ├── compress-with-roadroller.js └── zip-file.js ├── src ├── index.html ├── index.ts └── math.ts ├── tsconfig.json ├── typedefs └── png.d.ts ├── webpack.common.cjs ├── webpack.dev.cjs └── webpack.prod.cjs /.gitignore: -------------------------------------------------------------------------------- 1 | .cache 2 | node_modules 3 | dist 4 | zipped 5 | .DS_Store 6 | .idea 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/README.md -------------------------------------------------------------------------------- /assets/croissant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/assets/croissant.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/package.json -------------------------------------------------------------------------------- /scripts/check-file-size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/scripts/check-file-size.js -------------------------------------------------------------------------------- /scripts/compress-with-roadroller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/scripts/compress-with-roadroller.js -------------------------------------------------------------------------------- /scripts/zip-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/scripts/zip-file.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/src/index.html -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/src/math.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedefs/png.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.png"; 2 | -------------------------------------------------------------------------------- /webpack.common.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/webpack.common.cjs -------------------------------------------------------------------------------- /webpack.dev.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/webpack.dev.cjs -------------------------------------------------------------------------------- /webpack.prod.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mtmckenna/js13k-webpack-typescript-starter-party/HEAD/webpack.prod.cjs --------------------------------------------------------------------------------