@krivega/eslint-config 1.0.12 → 1.0.13

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
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.0.13](https://github.com/Krivega/eslint-config/compare/v1.0.12...v1.0.13) (2025-11-27)
6
+
7
+ ### Bug Fixes
8
+
9
+ - update import paths to include .js extension and adjust TypeScript configuration settings ([e77474e](https://github.com/Krivega/eslint-config/commit/e77474ed71a7e67ec324aa6952c889eccb525198))
10
+
5
11
  ### [1.0.12](https://github.com/Krivega/eslint-config/compare/v1.0.11...v1.0.12) (2025-11-27)
6
12
 
7
13
  ### [1.0.11](https://github.com/Krivega/eslint-config/compare/v1.0.10...v1.0.11) (2025-11-24)
package/cypress.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import pluginCypress from 'eslint-plugin-cypress';
2
- import config from './index';
2
+ import config from './index.js';
3
3
  const cypressConfig = [
4
4
  ...config,
5
5
  pluginCypress.configs.recommended
package/cypress.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Linter } from 'eslint';
2
2
  import pluginCypress from 'eslint-plugin-cypress';
3
- import config from './index';
3
+ import config from './index.js';
4
4
 
5
5
  const cypressConfig: Linter.Config[] = [
6
6
  ...config,
package/jest.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import pluginJest from 'eslint-plugin-jest';
2
- import config from './index';
2
+ import config from './index.js';
3
3
  const jestConfig = [
4
4
  ...config,
5
5
  {
package/jest.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { Linter } from 'eslint';
2
2
  import pluginJest from 'eslint-plugin-jest';
3
- import config from './index';
3
+ import config from './index.js';
4
4
 
5
5
  const jestConfig: Linter.Config[] = [
6
6
  ...config,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@krivega/eslint-config",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "bugs": {
5
5
  "url": "https://github.com/Krivega/eslint-config/issues"
6
6
  },
package/react.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import jsxA11y from 'eslint-plugin-jsx-a11y';
2
2
  import react from 'eslint-plugin-react';
3
3
  import reactHooks from 'eslint-plugin-react-hooks';
4
- import config from './index';
4
+ import config from './index.js';
5
5
  const reactConfig = [
6
6
  ...config,
7
7
  {
package/react.ts CHANGED
@@ -2,7 +2,7 @@ import type { ESLint, Linter } from 'eslint';
2
2
  import jsxA11y from 'eslint-plugin-jsx-a11y';
3
3
  import react from 'eslint-plugin-react';
4
4
  import reactHooks from 'eslint-plugin-react-hooks';
5
- import config from './index';
5
+ import config from './index.js';
6
6
 
7
7
  const reactConfig: Linter.Config[] = [
8
8
  ...config,