@lionstone-digital/eslint-config-typescript 0.0.8 → 0.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +6 -6
  2. package/src/index.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lionstone-digital/eslint-config-typescript",
3
- "version": "0.0.8",
3
+ "version": "0.0.10",
4
4
  "description": "Helpful eslint config for projects with TypeScript",
5
5
  "keywords": [
6
6
  "eslint",
@@ -25,13 +25,13 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "eslint-import-resolver-typescript": "^4.4.4",
28
- "typescript-eslint": "^8.42.0",
29
- "@lionstone-digital/eslint-config": "0.0.7"
28
+ "typescript-eslint": "^8.44.1",
29
+ "@lionstone-digital/eslint-config": "0.0.9"
30
30
  },
31
31
  "peerDependencies": {
32
- "eslint": ">= 9.29.0",
33
- "prettier": ">= 3.6.1",
34
- "typescript": ">=5.8.3"
32
+ "eslint": ">= 9.35.0",
33
+ "prettier": ">= 3.6.2",
34
+ "typescript": ">=5.9.2"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
package/src/index.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import eslintConfigBaseCore from '@lionstone-digital/eslint-config/core'
2
2
  import eslintConfigBasePrettier from '@lionstone-digital/eslint-config/prettier'
3
3
  import { createTypeScriptImportResolver } from 'eslint-import-resolver-typescript'
4
+ import { defineConfig } from 'eslint/config'
4
5
  import tsEslint from 'typescript-eslint'
5
6
 
6
- export default tsEslint.config(
7
+ export default defineConfig(
7
8
  // Core
8
- // @ts-expect-error - eslintConfigBaseCore is not typed
9
9
  ...eslintConfigBaseCore,
10
10
 
11
11
  // For TypeScript