@typescript-eslint/typescript-estree 8.59.5-alpha.3 → 8.59.5-alpha.4
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './ast-converter';
|
|
2
2
|
export * from './create-program/getScriptKind';
|
|
3
3
|
export type { ParseSettings } from './parseSettings';
|
|
4
|
+
export { SUPPORTED_TYPESCRIPT_VERSIONS } from './parseSettings/warnAboutTSVersion';
|
|
4
5
|
export * from './getModifiers';
|
|
5
6
|
export { typescriptVersionIsAtLeast } from './version-check';
|
|
6
7
|
export { getCanonicalFileName } from './create-program/shared';
|
|
@@ -14,10 +14,12 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.getCanonicalFileName = exports.typescriptVersionIsAtLeast = void 0;
|
|
17
|
+
exports.getCanonicalFileName = exports.typescriptVersionIsAtLeast = exports.SUPPORTED_TYPESCRIPT_VERSIONS = void 0;
|
|
18
18
|
// required by website
|
|
19
19
|
__exportStar(require("./ast-converter"), exports);
|
|
20
20
|
__exportStar(require("./create-program/getScriptKind"), exports);
|
|
21
|
+
var warnAboutTSVersion_1 = require("./parseSettings/warnAboutTSVersion");
|
|
22
|
+
Object.defineProperty(exports, "SUPPORTED_TYPESCRIPT_VERSIONS", { enumerable: true, get: function () { return warnAboutTSVersion_1.SUPPORTED_TYPESCRIPT_VERSIONS; } });
|
|
21
23
|
// required by packages/utils/src/ts-estree.ts
|
|
22
24
|
__exportStar(require("./getModifiers"), exports);
|
|
23
25
|
var version_check_1 = require("./version-check");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typescript-eslint/typescript-estree",
|
|
3
|
-
"version": "8.59.5-alpha.
|
|
3
|
+
"version": "8.59.5-alpha.4",
|
|
4
4
|
"description": "A parser that converts TypeScript source code into an ESTree compatible form",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"semver": "^7.7.3",
|
|
50
50
|
"tinyglobby": "^0.2.15",
|
|
51
51
|
"ts-api-utils": "^2.5.0",
|
|
52
|
-
"@typescript-eslint/
|
|
53
|
-
"@typescript-eslint/
|
|
54
|
-
"@typescript-eslint/visitor-keys": "8.59.5-alpha.
|
|
55
|
-
"@typescript-eslint/types": "8.59.5-alpha.
|
|
52
|
+
"@typescript-eslint/tsconfig-utils": "8.59.5-alpha.4",
|
|
53
|
+
"@typescript-eslint/project-service": "8.59.5-alpha.4",
|
|
54
|
+
"@typescript-eslint/visitor-keys": "8.59.5-alpha.4",
|
|
55
|
+
"@typescript-eslint/types": "8.59.5-alpha.4"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"@vitest/coverage-v8": "^4.0.18",
|