You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Node now support inporting builtin modules with node:path, node:fs, etc., can we support options to sort imports from node:* before npm modules? Example:
importcryptofrom'node:crypto'// Builtin import from "node:*"importfsfrom'node:fs'importpathfrom'node:path'importcookiefrom'cookie'// 3rd-party packageimportexpressfrom'express'
The text was updated successfully, but these errors were encountered:
Node now support inporting builtin modules with node:path, node:fs, etc., can we support options to sort imports from node:* before npm modules? Example:
The text was updated successfully, but these errors were encountered: