There is a warning message when I open a project folder in Visual Studio Code (VS Code), see the following screenshot:
so I need to set the “experimentalDecorators” option to remove this warning information. Here are my steps:
Create a new file named “jsconfig.json“ in the root directory of the project.
Copy the following code to this file and save.
{
"compilerOptions": {
"experimentalDecorators": true
}
}
Restart VS Code.
- END -