From a38bdf66f5c0f88b71b09ed297999802d0feda55 Mon Sep 17 00:00:00 2001 From: Lauri Nevala Date: Fri, 6 Nov 2020 16:06:27 +0200 Subject: [PATCH] webpack.config.json -> webpack.config.js Signed-off-by: Lauri Nevala --- docs/extensions/get-started/anatomy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/extensions/get-started/anatomy.md b/docs/extensions/get-started/anatomy.md index 8829ce398c..798316c797 100644 --- a/docs/extensions/get-started/anatomy.md +++ b/docs/extensions/get-started/anatomy.md @@ -19,11 +19,11 @@ Let's take a closer look at Hello World sample's source code and see how to achi ├── README.md // Readable description of your extension's functionality ├── src │ └── page.tsx // Extension's additional source code -├── main.ts // Source code for extension's main entrypoint +├── main.ts // Source code for extension's main entrypoint ├── package.json // Extension manifest and dependencies ├── renderer.tsx // Source code for extension's renderer entrypoint ├── tsconfig.json // TypeScript configuration -├── webpack.config.json // Webpack configuration +├── webpack.config.js // Webpack configuration ``` Extension directory contains extension's entry files and few configuration files. Let's focus on `package.json`, `main.ts` and `renderer.tsx` which are essential to understanding the `Hello World` extension.