├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── LICENSE ├── package.json ├── readme.md ├── src ├── index.html ├── main.ts └── scenes │ └── HelloWorldScene.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.cache 2 | /dist 3 | /node_modules 4 | /.DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/LICENSE -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/readme.md -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/scenes/HelloWorldScene.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/src/scenes/HelloWorldScene.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ourcade/phaser3-typescript-parcel-template/HEAD/tsconfig.json --------------------------------------------------------------------------------