@typescript-eslint/utils 8.48.1-alpha.8 → 8.48.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.
|
@@ -124,7 +124,7 @@ export declare namespace FlatConfig {
|
|
|
124
124
|
type Settings = SharedConfigurationSettings;
|
|
125
125
|
type Severity = SharedConfig.Severity;
|
|
126
126
|
type SeverityString = SharedConfig.SeverityString;
|
|
127
|
-
type SourceType = ParserOptionsTypes.SourceType;
|
|
127
|
+
type SourceType = 'commonjs' | ParserOptionsTypes.SourceType;
|
|
128
128
|
interface SharedConfigs {
|
|
129
129
|
[key: string]: Config | ConfigArray;
|
|
130
130
|
}
|
|
@@ -190,7 +190,7 @@ export declare namespace FlatConfig {
|
|
|
190
190
|
* Set to `"latest"` for the most recent supported version.
|
|
191
191
|
* @default "latest"
|
|
192
192
|
*/
|
|
193
|
-
ecmaVersion?: EcmaVersion;
|
|
193
|
+
ecmaVersion?: EcmaVersion | undefined;
|
|
194
194
|
/**
|
|
195
195
|
* An object specifying additional objects that should be added to the global scope during linting.
|
|
196
196
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/utils",
|
|
3
|
-
"version": "8.48.1
|
|
3
|
+
"version": "8.48.1",
|
|
4
4
|
"description": "Utilities for working with TypeScript + ESLint together",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
},
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"@eslint-community/eslint-utils": "^4.7.0",
|
|
65
|
-
"@typescript-eslint/scope-manager": "8.48.1
|
|
66
|
-
"@typescript-eslint/types": "8.48.1
|
|
67
|
-
"@typescript-eslint/typescript-estree": "8.48.1
|
|
65
|
+
"@typescript-eslint/scope-manager": "8.48.1",
|
|
66
|
+
"@typescript-eslint/types": "8.48.1",
|
|
67
|
+
"@typescript-eslint/typescript-estree": "8.48.1"
|
|
68
68
|
},
|
|
69
69
|
"peerDependencies": {
|
|
70
70
|
"eslint": "^8.57.0 || ^9.0.0",
|