-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
Switch to use nodenext module resolution #236640
base: main
Are you sure you want to change the base?
Conversation
This better enforces that imports end with a file extension and also use relative paths
@@ -3,8 +3,8 @@ | |||
* Licensed under the MIT License. See License.txt in the project root for license information. | |||
*--------------------------------------------------------------------------------------------*/ | |||
|
|||
import type { IMouseWheelEvent } from 'vs/base/browser/mouseEvent'; | |||
import type { WebviewStyles } from 'vs/workbench/contrib/webview/browser/webview'; | |||
import type { IMouseWheelEvent } from '../../../../base/browser/mouseEvent.ts'; |
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.
@mjbvz I think here it should also be .js
It seems required to set option |
Yes, thats a bug that I reported but was closed as "works as intended": microsoft/TypeScript#60074 |
Even if you don't use an import statement when the module is set to |
This better enforces that imports end with a file extension and also use relative paths