-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
ref: replace consistent-type-imports with verbatimModuleSyntax #95225
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 3 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
f18ad64
test(ui): jest 30
scttcper 0d87afa
update jest lint
scttcper 8af1279
bump sentry-env
scttcper 09af760
more progress on jest 30
scttcper 3b5766a
switch more tests to testable assign
scttcper bf44fa6
convert a few more tests
scttcper b9f2cdd
Merge branch 'master' into scttcper/jest-30
scttcper f3c4c9f
fix more location use
scttcper 2faec4d
lockfile
scttcper ba9d227
remove babel runtime, set target
scttcper aae787f
Merge branch 'master' into scttcper/jest-30
scttcper 3edf4f4
give up
scttcper 9cfa2ca
add comment
scttcper 8ae55a7
Merge branch 'master' into scttcper/jest-30
scttcper 1bb2731
Merge branch 'master' into scttcper/jest-30
scttcper 7add448
rename
scttcper 4822931
limit functionality via types
scttcper 8540224
whoops
scttcper 594a66d
Merge branch 'master' into scttcper/jest-30
scttcper b9c9a3f
Merge branch 'master' into scttcper/jest-30
scttcper 41bc3a6
Merge branch 'master' into scttcper/jest-30
scttcper 3ccb400
Merge branch 'master' into scttcper/jest-30
scttcper 920f4a9
bump version, add experimental-transform-types
scttcper 2b6e661
locate __dirname closer to use
scttcper 39346b0
add same thing to knip
scttcper c4f1d01
Merge branch 'master' into scttcper/jest-30
scttcper a8a362d
bump 30.0.3
scttcper c7b0f5f
Merge branch 'master' into scttcper/jest-30
scttcper 0e33012
remove container silence
scttcper 574b977
remove another silenced warning
scttcper c99f30a
use newer import.meta.dirname
scttcper 88cacd5
bump babel
scttcper 6bc141a
Merge branch 'master' into scttcper/jest-30
scttcper be6d14f
revert removal
scttcper f3b35a1
Merge branch 'master' into scttcper/jest-30
scttcper 9d0d762
Merge branch 'master' into scttcper/jest-30
scttcper 93da88d
bump patch version
scttcper ca3f8ab
remove a new window.location assignment
scttcper 0f77d54
ref: replace consistent-type-imports with verbatimModuleSyntax
TkDodo 49c50d6
ref: move DEFAULT_QUERY into issueList/utils
TkDodo d540b90
ref: remaining imports
TkDodo 6e9647d
fix: test execution
TkDodo 48f46ec
fix: set TS_NODE_PROJECT for knip
TkDodo 2077291
Merge branch 'master' into scttcper/jest-30
scttcper 378ab2c
Merge branch 'master' into scttcper/jest-30
scttcper 7b89cd5
Merge branch 'master' into tkdodo/ref/verbatimModuleSyntax
TkDodo f7cac73
Merge branch scttcper/jest-30
TkDodo 5714dea
ref: rebase onto 93303 so we don't need the special jest tsconfig
TkDodo 0b8470d
Merge branch 'master' into tkdodo/ref/verbatimModuleSyntax
TkDodo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note: verbatimModuleSyntax also enables isolatedModules, where files must be parseable on their own. For enums, that means they can’t reference a value outside of its file, or it’ll error with:
This is the only place where we had this violation (it’s also a lint violation as we can see), and since
DEFAULT_QUERY
is only used withinviews/issueList
, it makes sense to inline it here, as this also makes the constant smaller in scope / less global.