Fix eslint-plugin-relay d.ts reach by console and trust

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-23 15:51:05 +04:00
parent 3899656730
commit 9b528c2b88
10 changed files with 31 additions and 19 deletions

View File

@@ -36,7 +36,7 @@
"typescript-eslint": "^8.53.1"
},
"devDependencies": {
"@types/eslint-plugin-relay": "^1.0.0",
"@probo/eslint-plugin-relay-types": "^1.0.0",
"eslint": "^9.39.2",
"typescript": "^5.8.3"
}

View File

@@ -14,7 +14,8 @@
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
"noUncheckedSideEffectImports": true,
"types": ["@probo/eslint-plugin-relay-types"]
},
"include": ["src/**/*.ts", "eslint.config.mjs"]
"include": ["src", "eslint.config.mjs"],
}

View File

@@ -0,0 +1,12 @@
{
"name": "@probo/eslint-plugin-relay-types",
"version": "1.0.0",
"private": true,
"description": "Shared ESLint configuration for Probo monorepo",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts"
}
}
}

View File

@@ -1,7 +0,0 @@
{
"name": "@types/eslint-plugin-relay",
"version": "1.0.0",
"private": true,
"description": "Shared ESLint configuration for Probo monorepo",
"types": "./index.d.ts"
}