dazzling-salesclerk-51689
12/24/2024, 5:58 PM@pulumi/azure-native
package to our micro-service and its lint and build started to break on memory limits.
After doing some inspection, I realized that before the addition, tsc
analyzed about 8k files and after it, more than 35k(!), all additions are from the imported package of course.
We tried all the standards actions like doing explicit imports, excluding that package from tsconfig.json
and more of that kind.
Did anyone encountered such an issue as well?
Any ideas how to handle it?
thanks 🙏victorious-musician-62050
01/09/2025, 5:12 PMdazzling-salesclerk-51689
01/09/2025, 5:26 PMtsconfig.eslint.ts
the following entry:
"compilerOptions": {
"paths": {
"@pulumi/*": [
"./index.ts"
]
}
}
victorious-musician-62050
01/09/2025, 6:35 PMnice-sugar-99104
01/11/2025, 8:05 PMvictorious-musician-62050
01/11/2025, 9:26 PMnice-sugar-99104
01/11/2025, 9:33 PM