π @sindresorhus! I was [fiddling with prettier-vscode](https://github.com/prettier/prettier-vscode/pull/2201) and noticed an issue with [`find-up`βs import from `node:path`](https://github.com/sindresorhus/find-up/blob/ace3d10aadce889a78924954a2766af81eb315ff/index.js#L1). When running `yarn test`, the extension was crashing by saying that it could not resolve `node:path`. According to [v6.0.0 CHANGELOG](https://github.com/sindresorhus/find-up/releases/tag/v6.0.0) and [package.json β engines]( https://github.com/sindresorhus/find-up/blob/ace3d10aadce889a78924954a2766af81eb315ff/package.json#L15-L17), `find-up` is expected to work on any Node version that supports ESM. However, looks like `node:path` import has a stricter constraint, more specifically [Node 14.18 and Node 16+](https://github.com/inspect-js/is-core-module/blob/6717f000d063ea57beb772bded36c2f056ac404c/core.json#L71).