@will-stone/eslint-config 0.0.1 → 0.0.2

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.2
4
+
5
+ ### Patch Changes
6
+
7
+ - e49eee7: Fixed TS parser not loading.
8
+
3
9
  ## 0.0.1
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 tsParser from '@typescript-eslint/parser'
3
4
  import importPlugin from 'eslint-plugin-import'
4
5
  import jestPlugin from 'eslint-plugin-jest'
5
6
  import jsxA11yPlugin from 'eslint-plugin-jsx-a11y'
@@ -106,7 +107,7 @@ export default [
106
107
  {
107
108
  files: ['**/*.{ts,tsx}'],
108
109
  languageOptions: {
109
- parser: '@typescript-eslint/parser',
110
+ parser: tsParser,
110
111
  },
111
112
  rules: tsRules,
112
113
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@will-stone/eslint-config",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "Will Stone's ESLint config, using the Flat Config style.",
5
5
  "keywords": [
6
6
  "ESLint"