orange-arm-29738
03/04/2024, 12:38 AM@pulumi/azure-native
package in a typescript package. I checked, the package is huge, is there a way to only install the portions or types I need?adventurous-butcher-54166
03/04/2024, 9:54 AM"python.analysis.logLevel": "Trace"
which is very verbose and looked at what was actually going on..
• Package indexing (python.analysis.packageIndexDepths
) for pulumi_azure_native
is set to 2 to make sure not all additional vYYYYMMDD[-preview]
packages aren't indexed as the indexer will run out of memory
• Make sure indices are persisted to disk "python.analysis.persistAllIndices": true,
• Increase the index limit as the package contains so many objects "python.analysis.userFileIndexingLimit": 25000,
• Be very careful when importing packages from as to wide imports can trigger VSCode indexer to go off the cliff
◦ No * imports
◦ Only from pulumi_azure_native.<namespace> import <symbols>
◦ When importing versioned APIs
▪︎ from <http://pulumi_azure_native.app|pulumi_azure_native.app> import v20230801preview as app
▪︎ Not import pulumi_azure_native.app.v20230801preview as app
as that will essentially import all parent namespacesNo matter how you like to participate in developer communities, Pulumi wants to meet you there. If you want to meet other Pulumi users to share use-cases and best practices, contribute code or documentation, see us at an event, or just tell a story about something cool you did with Pulumi, you are part of our community.
Powered by