mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
webpack.config.json -> webpack.config.js
Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
This commit is contained in:
parent
44bf4d55f0
commit
a38bdf66f5
@ -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
|
├── README.md // Readable description of your extension's functionality
|
||||||
├── src
|
├── src
|
||||||
│ └── page.tsx // Extension's additional source code
|
│ └── 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
|
├── package.json // Extension manifest and dependencies
|
||||||
├── renderer.tsx // Source code for extension's renderer entrypoint
|
├── renderer.tsx // Source code for extension's renderer entrypoint
|
||||||
├── tsconfig.json // TypeScript configuration
|
├── 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.
|
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.
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user