mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
9f9eec1250
Add info/hint for terminal errors related to Node.js globals: - __filename - __dirname - Buffer - global - setImmediate - clearImmediate Closes https://github.com/denoland/deno/issues/17494
7 lines
218 B
Text
7 lines
218 B
Text
error: Uncaught (in promise) ReferenceError: __dirname is not defined
|
|
__dirname;
|
|
^
|
|
at [WILDCARD]dirname.js:1:1
|
|
|
|
info: __dirname global is not available in ES modules.
|
|
hint: Use import.meta.dirname instead.
|