1
0
mirror of https://github.com/zumbiepig/MineXLauncher.git synced 2025-06-08 09:24:48 +00:00
This commit is contained in:
zumbiepig 2024-09-07 08:30:51 -07:00
parent cd1c802fcd
commit 4e721db796
No known key found for this signature in database
GPG Key ID: 17C891BE28B953DE
4 changed files with 4 additions and 2 deletions

BIN
bun.lockb

Binary file not shown.

View File

@ -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: {

View File

@ -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",

View File

@ -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/"]
}