Posts

Showing posts from February, 2022

SPFx - Understanding the File Structure in SharePoint Framework :: SPFX 1.14

Image
  SPFx - Understanding the File Structure in SharePoint Framework :: SPFX 1.14 Shows Solution structure of the SharePoint framework.  Yeoman SharePoint generator makes it easy for the developer to kickstart the SPFx development without wasting time in creating the folder and file structure.  Below are important files in SPFx Solution: When we run the command to scaffold the solution using Yeoman generator, it will create a file and folder structure as shown below: Below are the details of each folder and respective files that are needed for SPFx development. A) .vscode folder:   It is the default folder created by Visual Studio. These files contain the debugging and task configurations. This folder contains three files as below: 1. extensions.js :  This file does not relate to SPFx. It only indicates the list of extensions that you have installed in your VS Code.   2. launch.json:  This file contains the workbench configurations. We can define ...