@nighttrax/eslint-config-ts 12.0.0-beta.0 → 12.0.0-beta.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
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
+ # [12.0.0-beta.1](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-beta.0...@nighttrax/eslint-config-ts@12.0.0-beta.1) (2025-07-06)
7
+
8
+ ### Features
9
+
10
+ - **ts:** Add more globs for dev deps ([2e6e9e7](https://github.com/NiGhTTraX/eslint-config/commit/2e6e9e7044c81a16da1f2e248d0e8933963fa8f4))
11
+
6
12
  # [12.0.0-beta.0](https://github.com/NiGhTTraX/eslint-config/compare/@nighttrax/eslint-config-ts@12.0.0-alpha.3...@nighttrax/eslint-config-ts@12.0.0-beta.0) (2025-07-04)
7
13
 
8
14
  **Note:** Version bump only for package @nighttrax/eslint-config-ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nighttrax/eslint-config-ts",
3
- "version": "12.0.0-beta.0",
3
+ "version": "12.0.0-beta.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,5 +34,5 @@
34
34
  "eslint": "~9.30.1",
35
35
  "prettier": "~3.6.2"
36
36
  },
37
- "gitHead": "08d414c017075a0630fae6c105089cbac5b024fd"
37
+ "gitHead": "18c0dc9bd552923c4b81c8e3c572d8a58fb653ff"
38
38
  }
package/typescript.mjs CHANGED
@@ -3,18 +3,17 @@ import tsEslint from "typescript-eslint";
3
3
  import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
4
4
  import * as pluginImportX from "eslint-plugin-import-x";
5
5
  import * as tsParser from "@typescript-eslint/parser";
6
- import { defineConfig } from "eslint/config";
7
6
 
8
7
  const EXTENSIONS = "{js,mjs,cjs,ts,jsx,tsx}";
9
8
 
10
- export const nighttraxTS = defineConfig([
9
+ export const nighttraxTS = tsEslint.config([
11
10
  {
12
11
  files: [`**/*.${EXTENSIONS}`],
13
12
  languageOptions: { parser: tsParser },
14
13
  },
15
14
 
16
15
  pluginJs.configs.recommended,
17
- ...tsEslint.configs.recommended,
16
+ tsEslint.configs.recommended,
18
17
  eslintPluginPrettierRecommended,
19
18
  pluginImportX.flatConfigs.recommended,
20
19
  pluginImportX.flatConfigs.typescript,
@@ -49,9 +48,12 @@ export const nighttraxTS = defineConfig([
49
48
  `**/webpack.config.${EXTENSIONS}`,
50
49
  `**/rollup.config.${EXTENSIONS}`,
51
50
  `**/vite.config.${EXTENSIONS}`,
51
+ `**/vitest.config.${EXTENSIONS}`,
52
52
  `**/.storybook/main.${EXTENSIONS}`,
53
53
  `**/.storybook/preview.${EXTENSIONS}`,
54
54
  `**/eslint.config.${EXTENSIONS}`,
55
+ `**/*.{spec,test}.${EXTENSIONS}`,
56
+ "**/tests/**",
55
57
  ],
56
58
  },
57
59
  ],