You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would love this extension to work with node_modules.
I'm not saying it would work with all the ones you install, as that could be crazy.
However detect the ones you add in the module, most people use the app.module.ts in an application environment. There you put the imports and that way you could catch which components you have to autocomplete.
This way if for example you have angular material and you also have the MatCheckboxModule added. It will autocomplete with its properties
And being controlled by the app.module, there would be no problem to support all other attributes from other libraries than angular material.
Moreover, as it is a standard. Even from one project you could take all the .module.ts files and scan the imports.
The text was updated successfully, but these errors were encountered:
JoseManuelFV
changed the title
Use node modules
Add components from imported modules
Nov 29, 2022
I would love this extension to work with node_modules.
I'm not saying it would work with all the ones you install, as that could be crazy.
However detect the ones you add in the module, most people use the
app.module.ts
in an application environment. There you put the imports and that way you could catch which components you have to autocomplete.This way if for example you have angular material and you also have the
MatCheckboxModule
added. It will autocomplete with its propertiesAnd being controlled by the
app.module
, there would be no problem to support all other attributes from other libraries than angular material.Moreover, as it is a standard. Even from one project you could take all the
.module.ts
files and scan the imports.The text was updated successfully, but these errors were encountered: