Skip to content

Commit

Permalink
Merge pull request #881 from megazalrock/fix-import-description
Browse files Browse the repository at this point in the history
ES Moduleのimportについての説明が間違っていたのを修正
  • Loading branch information
suin authored Aug 22, 2024
2 parents c32819f + 665e3e7 commit 87a5a93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/reference/import-export-require.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ console.log(inc(3));

### `import`

`require()`と同じく他の`.js, .ts`ファイルを読み込む機能ですが、`require()`はファイル内のどこにでも書くことができる一方で`import`**必ずファイルの一番上に書く必要があります**
`require()`と同じく他の`.js, .ts`ファイルを読み込む機能ですが、`require()`はファイル内のどこにでも書くことができる一方で`import`**必ずトップレベル(ブロックや関数の外)に書く必要があります**
なお、書き方が2通りあります。

```ts twoslash
Expand Down

0 comments on commit 87a5a93

Please sign in to comment.