From 1017f9d154c7836e674ef021b1fe2c69fdf80fba Mon Sep 17 00:00:00 2001 From: Lakshya Thakur Date: Fri, 31 Oct 2025 22:38:49 +0530 Subject: [PATCH 1/5] docs: add missing comma after 'file' for clarity --- packages/documentation/copy/en/handbook-v2/Modules.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/documentation/copy/en/handbook-v2/Modules.md b/packages/documentation/copy/en/handbook-v2/Modules.md index d84f9f9e7575..3338c8c37ad0 100644 --- a/packages/documentation/copy/en/handbook-v2/Modules.md +++ b/packages/documentation/copy/en/handbook-v2/Modules.md @@ -28,7 +28,7 @@ Before we start, it's important to understand what TypeScript considers a module The JavaScript specification declares that any JavaScript files without an `import` declaration, `export`, or top-level `await` should be considered a script and not a module. -Inside a script file variables and types are declared to be in the shared global scope, and it's assumed that you'll either use the [`outFile`](/tsconfig#outFile) compiler option to join multiple input files into one output file, or use multiple `