@foray1010/eslint-config 11.0.1 → 11.0.3

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.0.3](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@11.0.2...@foray1010/eslint-config@11.0.3) (2023-10-01)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **deps:** update dependency eslint-plugin-deprecation to v2 ([aa5924f](https://github.com/foray1010/common-presets/commit/aa5924fae7abbcf07b8c4d743d2291f83dd01967))
11
+
12
+ ## [11.0.2](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@11.0.1...@foray1010/eslint-config@11.0.2) (2023-08-30)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **tsconfig:** use correct module resolution for typescript 5.2.2 ([57f4054](https://github.com/foray1010/common-presets/commit/57f4054a891301e5c09e49c24d38da90b7b6d386))
17
+
6
18
  ## [11.0.1](https://github.com/foray1010/common-presets/compare/@foray1010/eslint-config@11.0.0...@foray1010/eslint-config@11.0.1) (2023-08-13)
7
19
 
8
20
  ### Bug Fixes
package/bases/base.mjs CHANGED
@@ -25,9 +25,8 @@ async function generateTypeScriptConfig() {
25
25
  const eslintPluginTypescriptEslint = (
26
26
  await import('@typescript-eslint/eslint-plugin')
27
27
  ).default
28
- const typescriptEslintParser =
29
- // @ts-expect-error
30
- (await import('@typescript-eslint/parser')).default
28
+ const typescriptEslintParser = (await import('@typescript-eslint/parser'))
29
+ .default
31
30
  /* eslint-enable import/no-unresolved */
32
31
  const eslintPluginDeprecation = (await import('eslint-plugin-deprecation'))
33
32
  .default
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/package",
3
3
  "name": "@foray1010/eslint-config",
4
- "version": "11.0.1",
4
+ "version": "11.0.3",
5
5
  "homepage": "https://github.com/foray1010/common-presets/tree/master/packages/eslint-config#readme",
6
6
  "bugs": "https://github.com/foray1010/common-presets/issues",
7
7
  "repository": {
@@ -29,7 +29,7 @@
29
29
  "eslint-config-prettier": "^9.0.0",
30
30
  "eslint-import-resolver-typescript": "^3.5.2",
31
31
  "eslint-plugin-compat": "^4.1.2",
32
- "eslint-plugin-deprecation": "^1.4.0",
32
+ "eslint-plugin-deprecation": "^2.0.0",
33
33
  "eslint-plugin-functional": "^6.0.0",
34
34
  "eslint-plugin-import": "^2.22.1",
35
35
  "eslint-plugin-jest": "^27.1.3",
@@ -44,8 +44,8 @@
44
44
  "globals": "^13.19.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@types/confusing-browser-globals": "1.0.0",
48
- "@types/eslint": "8.44.2"
47
+ "@types/confusing-browser-globals": "1.0.1",
48
+ "@types/eslint": "8.44.3"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "@testing-library/dom": "^9.0.0",
@@ -67,5 +67,5 @@
67
67
  "publishConfig": {
68
68
  "access": "public"
69
69
  },
70
- "gitHead": "6510be6a4ab9f4b36745c7f5c5d2e995a2ab7770"
70
+ "gitHead": "3fb9640145cdcb5915cce61743790629ce34f3f8"
71
71
  }