diff --git a/bun.lockb b/bun.lockb index 3c394e6..9a57142 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/eslint.config.js b/eslint.config.js index 3258652..4ed26d5 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,11 +1,13 @@ import eslint from '@eslint/js'; import tseslint from 'typescript-eslint'; +import eslintConfigPrettier from 'eslint-config-prettier'; export default tseslint.config( eslint.configs.recommended, tseslint.configs.eslintRecommended, ...tseslint.configs.strict, ...tseslint.configs.stylisticTypeChecked, + eslintConfigPrettier, { languageOptions: { parserOptions: { diff --git a/package.json b/package.json index 8a36e96..a6baee0 100644 --- a/package.json +++ b/package.json @@ -39,6 +39,7 @@ "@types/semver": "^7.5.8", "@types/serve-favicon": "^2.5.7", "eslint": "^9.9.1", + "eslint-config-prettier": "^9.1.0", "html-minifier": "^4.0.0", "javascript-obfuscator": "^4.1.1", "prettier": "^3.3.3", diff --git a/tsconfig.json b/tsconfig.json index 13e53bc..a80a3b5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,5 +1,4 @@ { "extends": ["@tsconfig/bun", "@tsconfig/strictest"], - "include": ["src/resources/scripts/"], - "exclude": ["node_modules/", "public/"] + "exclude": ["node_modules/", "public/", "src/game/", "src/resources/mods/downloads/"] }