@nihalgonsalves/esconfig 0.10.0 → 0.10.1

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.
@@ -7,6 +7,12 @@ import tseslint from "typescript-eslint";
7
7
 
8
8
  export default tseslint.config(
9
9
  js.configs.recommended,
10
+ // @ts-expect-error nullability
11
+ {
12
+ // extract only the rules, because this config otherwise applies only to
13
+ // TypeScript extensions, which causes problems with checkJs
14
+ rules: tseslint.configs.eslintRecommended.rules,
15
+ },
10
16
  ...tseslint.configs.strictTypeChecked,
11
17
  ...tseslint.configs.stylisticTypeChecked,
12
18
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nihalgonsalves/esconfig",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "Shared ECMAScript Config (TS, Lint, Prettier)",
5
5
  "main": "index.js",
6
6
  "repository": "git@github.com:nihalgonsalves/esconfig.git",