From eb002ecfaaa8744747505dfd7de4fca10e3c7239 Mon Sep 17 00:00:00 2001 From: Quinn Ftw Date: Sun, 28 Dec 2025 21:37:12 -0800 Subject: [PATCH] chore(status-dashboard): update server config references MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update status-dashboard server to use local configs: - Update .eslintrc.json reference - Update package.json configuration - Update tsconfig.json extends path 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- features/status-dashboard/server/.eslintrc.json | 2 +- features/status-dashboard/server/package.json | 2 +- features/status-dashboard/server/tsconfig.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/features/status-dashboard/server/.eslintrc.json b/features/status-dashboard/server/.eslintrc.json index 58d6f0feb..556739db2 100644 --- a/features/status-dashboard/server/.eslintrc.json +++ b/features/status-dashboard/server/.eslintrc.json @@ -1,6 +1,6 @@ { "root": true, - "extends": ["./node_modules/@eslint/config-base/index.js"], + "extends": ["@transquinnftw/configs/eslint/base"], "parserOptions": { "project": "./tsconfig.eslint.json", "tsconfigRootDir": "." diff --git a/features/status-dashboard/server/package.json b/features/status-dashboard/server/package.json index 07b75c355..1e5b61ed5 100644 --- a/features/status-dashboard/server/package.json +++ b/features/status-dashboard/server/package.json @@ -58,7 +58,7 @@ "ws": "^8.16.0" }, "devDependencies": { - "@eslint/config-base": "link:/var/home/lilith/Code/@packages/@eslint/config-base", + "@transquinnftw/configs": "^1.0.0", "@typescript-eslint/eslint-plugin": "^7.0.0", "@typescript-eslint/parser": "^7.0.0", "eslint": "^8.57.0", diff --git a/features/status-dashboard/server/tsconfig.json b/features/status-dashboard/server/tsconfig.json index 896b3251f..6619ce5e8 100644 --- a/features/status-dashboard/server/tsconfig.json +++ b/features/status-dashboard/server/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../../@packages/@core/config/tsconfig.base.json", + "extends": "@transquinnftw/configs/typescript/nestjs.json", "compilerOptions": { "module": "commonjs", "moduleResolution": "node",