Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
dist
node_modules
assets
assets
webpack.*
babel.*
7 changes: 2 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json",
"ecmaVersion": 2018,
"ecmaVersion": 2023,
"sourceType": "module"
},
"plugins": [
Expand All @@ -26,9 +26,6 @@
".ts",
".js"
]
},
"webpack": {
"config": "webpack.dev.config.js"
}
}
},
Expand Down Expand Up @@ -61,4 +58,4 @@
],
"no-nested-ternary": "off"
}
}
}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Phaser.io CE 2.15.0, Howler.js 2.1.3, TypeScript and Webpack 4.43, play nice together.
# Phaser.io CE 2.20.0, Howler.js 2.2.3, TypeScript and Webpack 5.75, play nice together.
#### A bootstrap project to create games with Phaser.io, Howler.js, TypeScript and Webpack.

## Features
- Uses the latest Phaser CE
- Uses Howler (an awesome audio library) - can be easily removed if one does not use it
- TypeScript linter that checks TypeScript code for readability, maintainability, and functionality errors
- Webpack 4 ready
- Webpack 5 ready
- Built-in commands to easily deploy code your code (minify, uglify, comments removal, etc)
- Other awesome stuff!

Expand Down Expand Up @@ -80,4 +80,4 @@ Special thanks to:
<a href="https://github.com/dimorphic/" target="_blank" title="dimorphic's Profile">dimorphic</a>

<br />
Made with <3 in Romania
Made with <3 in Romania
7 changes: 7 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module.exports = {
presets: ["@babel/preset-typescript"],
plugins: [
["@babel/plugin-proposal-class-properties"],
["@babel/plugin-transform-typescript"],
],
};
Loading