eslint-config-vylda-typescript 5.4.0 → 5.4.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 +4 -0
- package/index.d.ts +4 -3
- package/package.json +2 -2
package/Changelog.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this component will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [5.4.1] - 2025-11-13
|
|
8
|
+
### Updated
|
|
9
|
+
- index.d.ts file [Vilda Lipold]
|
|
10
|
+
|
|
7
11
|
## [5.4.0] - 2025-11-13
|
|
8
12
|
### Updated
|
|
9
13
|
- Packages [Vilda Lipold]
|
package/index.d.ts
CHANGED
|
@@ -5,6 +5,7 @@ export type TGetConfigOptions = TGetImportConfigOptions & {
|
|
|
5
5
|
barrelsFiles?: Array<string>;
|
|
6
6
|
files?: Array<string>;
|
|
7
7
|
plugins?: Record<string, ESLint.Plugin>;
|
|
8
|
+
tsFiles?: Array<string>;
|
|
8
9
|
};
|
|
9
10
|
export type TGetImportConfigOptions = {
|
|
10
11
|
barrelsFiles?: Array<string>;
|
|
@@ -16,8 +17,8 @@ export type TGetImportConfigOptions = {
|
|
|
16
17
|
plugins?: Record<string, ESLint.Plugin>;
|
|
17
18
|
};
|
|
18
19
|
|
|
19
|
-
export function getConfig(options?: TGetConfigOptions): TConfig;
|
|
20
|
-
export function getImportConfig(options?: TGetImportConfigOptions): TConfig;
|
|
20
|
+
export function getConfig(baseDir: string, options?: TGetConfigOptions): TConfig;
|
|
21
|
+
export function getImportConfig(tsConfigPath: string, options?: TGetImportConfigOptions): TConfig;
|
|
21
22
|
export function getLanguageOptions(dir: string): TConfig;
|
|
22
23
|
export function mapFiles(defaults: TConfig, customFiles: Array<string>): TConfig;
|
|
23
24
|
|
|
@@ -52,4 +53,4 @@ export const tsVariables: TConfig;
|
|
|
52
53
|
export const vanillaPlugins: Record<string, ESLint.Plugin>;
|
|
53
54
|
export const variables: TConfig;
|
|
54
55
|
|
|
55
|
-
export default
|
|
56
|
+
export default getConfig;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-vylda-typescript",
|
|
3
|
-
"version": "5.4.
|
|
3
|
+
"version": "5.4.1",
|
|
4
4
|
"description": "Eslint Typescript rules for JS and TS vanilla projects",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"eslint": "^9.39.1",
|
|
36
|
-
"eslint-config-vylda-vanilla": "^4.4.
|
|
36
|
+
"eslint-config-vylda-vanilla": "^4.4.2",
|
|
37
37
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
38
38
|
"tslib": "^2.8.1",
|
|
39
39
|
"typescript-eslint": "^8.46.4"
|