@will-stone/eslint-config 0.0.2 → 0.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
@@ -1,5 +1,11 @@
1
1
  # @will-stone/eslint-config
2
2
 
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - fd613ec: Fixed cannot find TS plugin.
8
+
3
9
  ## 0.0.2
4
10
 
5
11
  ### Patch Changes
package/eslint-config.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import fs from 'node:fs'
2
2
 
3
+ import tsPlugin from '@typescript-eslint/eslint-plugin'
3
4
  import tsParser from '@typescript-eslint/parser'
4
5
  import importPlugin from 'eslint-plugin-import'
5
6
  import jestPlugin from 'eslint-plugin-jest'
@@ -109,6 +110,9 @@ export default [
109
110
  languageOptions: {
110
111
  parser: tsParser,
111
112
  },
113
+ plugins: {
114
+ '@typescript-eslint': tsPlugin,
115
+ },
112
116
  rules: tsRules,
113
117
  },
114
118
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@will-stone/eslint-config",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Will Stone's ESLint config, using the Flat Config style.",
5
5
  "keywords": [
6
6
  "ESLint"