From ca898f6181f2f56271e33abecb2334ce02692b16 Mon Sep 17 00:00:00 2001 From: LautaroPetaccio Date: Tue, 21 Jan 2025 17:37:08 -0300 Subject: [PATCH] fix: Restored linting configuration --- .eslintrc.json | 4 ++-- package.json | 2 +- tsconfig.node.json | 16 +--------------- 3 files changed, 4 insertions(+), 18 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index cfdf02469..5ce3c9c46 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -28,7 +28,7 @@ "@typescript-eslint/no-misused-promises": ["error", { "checksVoidReturn": false }] }, "parserOptions": { - "project": ["./tsconfig.node.json"] + "project": ["./tsconfig.json"] }, "overrides": [ { @@ -47,7 +47,7 @@ "@typescript-eslint/no-unsafe-enum-comparison": "off" }, "parserOptions": { - "project": ["./tsconfig.node.json"] + "project": ["./tsconfig.json"] } }, { diff --git a/package.json b/package.json index b0886f4e3..718c5d74e 100644 --- a/package.json +++ b/package.json @@ -160,4 +160,4 @@ "decentraland-ecs": "6.12.4-7784644013.commit-f770b3e", "decentraland": "3.3.0" } -} +} \ No newline at end of file diff --git a/tsconfig.node.json b/tsconfig.node.json index 8c67e2da2..36750b0f1 100644 --- a/tsconfig.node.json +++ b/tsconfig.node.json @@ -6,20 +6,6 @@ "jsx": "react-jsx", "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, - "baseUrl": "src", - "paths": { - "components/*": ["components/*"], - "config/*": ["config/*"], - "contracts/*": ["contracts/*"], - "ecsScene/*": ["ecsScene/*"], - "experiments/*": ["experiments/*"], - "icons/*": ["icons/*"], - "images/*": ["images/*"], - "lib/*": ["lib/*"], - "modules/*": ["modules/*"], - "routing/*": ["routing/*"], - "specs/*": ["specs/*"] - } }, - "include": ["vite.config.ts", "src"] + "include": ["vite.config.ts"] }