Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

feat: support TypeScript 5.1#7088

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
30 commits
Select commitHold shift + click to select a range
16d750f
feat: support TypeScript 5.1
JoshuaKGoldbergJun 6, 2023
45e19f8
Re-apply patch-package typescript
JoshuaKGoldbergJun 6, 2023
07a8a85
jsx: preserve in ast-spec
JoshuaKGoldbergJun 7, 2023
a000e00
Added component-dashed fixture
JoshuaKGoldbergJun 7, 2023
65ae4f9
Rename to avoid global naming conflict
JoshuaKGoldbergJun 7, 2023
676e900
chore: only run website tests on non-forks
JamesHenryJun 7, 2023
8bf3877
chore: only run website tests on non-forks
JamesHenryJun 7, 2023
16553c6
Updated ast-spec snapshots
JoshuaKGoldbergJun 7, 2023
4bd4879
Let's try --runInBand
JoshuaKGoldbergJun 7, 2023
6931b54
How about some logging
JoshuaKGoldbergJun 7, 2023
ea0e298
--verbose
JoshuaKGoldbergJun 7, 2023
6a7c991
Skip parse.moduleResolver.+ tests in Node 14
JoshuaKGoldbergJun 7, 2023
018e10f
map of undefined
JoshuaKGoldbergJun 8, 2023
50a51ae
more logging on process version
JoshuaKGoldbergJun 8, 2023
5bfbdac
Remove jest.config.js shenanigans
JoshuaKGoldbergJun 8, 2023
377d69f
Remove --frozen-lockfile for now
JoshuaKGoldbergJun 8, 2023
1d0484f
Mention ts version in jest.config.js
JoshuaKGoldbergJun 8, 2023
f97cf33
Split placeholder-error in twain
JoshuaKGoldbergJun 8, 2023
0b4eb19
Try a .skip
JoshuaKGoldbergJun 8, 2023
ad1541d
Revert "Try a .skip"
JoshuaKGoldbergJun 8, 2023
c6f949b
Heck, let's try Node 20
JoshuaKGoldbergJun 8, 2023
564f73d
Revert "Heck, let's try Node 20"
JoshuaKGoldbergJun 8, 2023
f54f303
skipLibCheck and strict
JoshuaKGoldbergJun 9, 2023
8dba084
Undid some changes, for 5.1.3 again
JoshuaKGoldbergJun 9, 2023
a2b5fcd
Used new resolution courtesy of Jake
JoshuaKGoldbergJun 26, 2023
f79242b
Merge branch 'main'
JoshuaKGoldbergJun 26, 2023
cb4b668
Corrected TypeScript patching and resolution
JoshuaKGoldbergJun 26, 2023
f978c76
Fix packages/website/tsconfig.json module
JoshuaKGoldbergJun 26, 2023
10bdc43
5.1.6
JoshuaKGoldbergJun 30, 2023
3a01637
Recreated patch-package typescript
JoshuaKGoldbergJun 30, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions.github/workflows/ci.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -177,6 +177,8 @@ jobs:
retention-days: 1

website_tests:
# The NETLIFY_TOKEN secret will not be available on forks
if: github.repository_owner == 'typescript-eslint'
permissions:
contents: read # to fetch code (actions/checkout)

Expand Down
4 changes: 4 additions & 0 deletions.prettierignore
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,6 +17,10 @@ packages/ast-spec/src/element/AccessorProperty/fixtures
# prettier doesn't yet support `const` modifiers for type parameters
packages/ast-spec/src/special/TSTypeParameter/fixtures

# prettier doesn't yet support JSX namespaced attributes
packages/ast-spec/src/jsx/JSXNamespacedName/fixtures/component/fixture.tsx
packages/scope-manager/tests/fixtures/jsx/namespaced-attribute.tsx

# Ignore CHANGELOG.md files to avoid issues with automated release job
CHANGELOG.md

Expand Down
2 changes: 1 addition & 1 deletiondocs/users/Dependency_Versions.mdx
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -16,7 +16,7 @@ Support for specific Current status releases are considered periodically.

## TypeScript

> The version range of TypeScript currently supported is `>=3.3.1 <5.1.0`.
> The version range of TypeScript currently supported is `>=3.3.1 <5.2.0`.

These versions are what we test against.

Expand Down
5 changes: 2 additions & 3 deletionspackage.json
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -68,7 +68,6 @@
"@types/is-glob": "^4.0.2",
"@types/jest": "29.4.4",
"@types/jest-specific-snapshot": "^0.5.5",
"@types/lodash": "^4.14.182",
"@types/marked": "^4.0.3",
"@types/ncp": "^2.0.5",
"@types/node": "^18.11.9",
Expand DownExpand Up@@ -112,10 +111,10 @@
"ts-node": "10.7.0",
"tslint": "^6.1.3",
"tsx": "^3.12.1",
"typescript": ">=3.3.1 <5.1.0"
"typescript": "5.1.6"
},
"resolutions": {
"typescript": "~5.0.2",
"typescript": "5.1.6",
"@types/node": "^18.11.9",
"@jest/create-cache-key-function": "^29",
"@jest/reporters": "^29",
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
namespace JSX {
export interface IntrinsicElements {
'foo-bar:baz-bam': any;
}
}

const componentDashed = <foo-bar:baz-bam />;
View file
Open in desktop

Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.

Loading

[8]ページ先頭

©2009-2025 Movatter.jp