Skip to content

Commit 4e23bc6

Browse files
committed
chore: fix type errors
1 parent 574552b commit 4e23bc6

4 files changed

Lines changed: 8 additions & 9 deletions

File tree

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,10 @@
220220
},
221221
"inlinedDependencies": {
222222
"@eslint-community/eslint-utils": "4.9.1",
223-
"@typescript-eslint/scope-manager": "8.58.0",
224-
"@typescript-eslint/types": "8.58.0",
225-
"@typescript-eslint/utils": "8.58.0",
226-
"@typescript-eslint/visitor-keys": "8.58.0",
223+
"@typescript-eslint/scope-manager": "8.58.1",
224+
"@typescript-eslint/types": "8.58.1",
225+
"@typescript-eslint/utils": "8.58.1",
226+
"@typescript-eslint/visitor-keys": "8.58.1",
227227
"cached-factory": "0.1.0",
228228
"eslint-plugin-erasable-syntax-only": "0.4.0",
229229
"eslint-visitor-keys": [

scripts/typegen.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import fs from 'node:fs/promises'
22

33
import { flatConfigsToRulesDTS } from 'eslint-typegen/core'
44
import { builtinRules } from 'eslint/use-at-your-own-risk'
5-
import { CONFIG_PRESET_FULL_ON } from 'src/config-presets'
5+
import { CONFIG_PRESET_FULL_ON } from '../src/config-presets'
66
import { antfu } from '../src/factory'
77

88
const configs = await antfu(CONFIG_PRESET_FULL_ON)

src/cli/constants-generated.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ export const versionsMap = {
33
"@next/eslint-plugin-next": "^16.2.2",
44
"@unocss/eslint-plugin": "^66.6.7",
55
"astro-eslint-parser": "^1.4.0",
6-
"eslint": "^10.1.0",
7-
"eslint-plugin-astro": "^1.6.0",
6+
"eslint": "^10.2.0",
7+
"eslint-plugin-astro": "^1.7.0",
88
"eslint-plugin-format": "^2.0.1",
99
"eslint-plugin-react-refresh": "^0.5.2",
1010
"eslint-plugin-solid": "^0.14.5",
11-
"eslint-plugin-svelte": "^3.16.0",
11+
"eslint-plugin-svelte": "^3.17.0",
1212
"prettier-plugin-astro": "^0.14.1",
1313
"prettier-plugin-slidev": "^1.0.5",
1414
"svelte-eslint-parser": "^1.6.0"

tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"compilerOptions": {
33
"target": "ESNext",
4-
"baseUrl": ".",
54
"module": "ESNext",
65
"moduleResolution": "Bundler",
76
"strict": true,

0 commit comments

Comments
 (0)