Skip to content

Commit b88989c

Browse files
committed
Refactor project structure and update dependencies
- Removed package-lock.json from version control. - Updated .gitignore to include package-lock.json. - Updated package.json to: - Change lint script to target the src directory. - Upgrade @favware/rollup-type-bundler to version 4.0.0. - Upgrade @types/node to version 22.10.7. - Upgrade ESLint and related packages to version 9.18.0. - Refactored Manager.ts to simplify player connection logic. - Enhanced error handling in Node.ts for axios requests. - Cleaned up unused ESLint disable comments in Utils.ts.
1 parent bd2bbca commit b88989c

File tree

7 files changed

+31
-4817
lines changed

7 files changed

+31
-4817
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
dist
22
node_modules
3+
package-lock.json
34

4-
.nuxt
5-
.env
6-
.idea

eslint.config.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
const eslintPlugin = require("@typescript-eslint/eslint-plugin");
2+
const eslintParser = require("@typescript-eslint/parser");
3+
4+
module.exports = [
5+
{
6+
ignores: ["node_modules/", "dist/"],
7+
},
8+
{
9+
files: ["**/*.ts"],
10+
languageOptions: {
11+
parser: eslintParser,
12+
sourceType: "module",
13+
},
14+
plugins: {
15+
"@typescript-eslint": eslintPlugin,
16+
},
17+
rules: {
18+
...eslintPlugin.configs.recommended.rules,
19+
},
20+
},
21+
];

0 commit comments

Comments
 (0)