diff options
author | crowlKats <13135287+crowlKats@users.noreply.github.com> | 2020-09-05 22:34:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-05 16:34:20 -0400 |
commit | 849431eb1d112d1f79f4a327830dc1a5bf22dd47 (patch) | |
tree | cd4802903a50a96a1a6b8c4cadaaecee675c0961 /docs/examples | |
parent | 8c880d32612c562795d8cd539c662a0cfdcbb8c8 (diff) |
Fix hellish mistake in manual (#7363)
Diffstat (limited to 'docs/examples')
-rw-r--r-- | docs/examples/import_export.md | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/examples/import_export.md b/docs/examples/import_export.md index 22d02eea7..37ee8de06 100644 --- a/docs/examples/import_export.md +++ b/docs/examples/import_export.md @@ -1,8 +1,11 @@ # Import and Export Modules Deno by default standardizes the way modules are imported in both JavaScript and -TypeScript. It follows the ECMAScript 6 `import/export` standard with one -caveat, the file type must be included at the end of import statement. +TypeScript using the ECMAScript 6 `import/export` standard. + +It adopts browser-like module resolution, meaning that file names must be +specified in full. You may not omit the file extension and there is no special +handling of `index.js`. ```js import { |