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
build(angular): Avoid loading all @types/ packages (#8466)
As `@sentry/angular` uses TS 4.0, but the default behavior of TS is to
load _all_ `@types/xxx` packages it can find in node_modules, the build
will fail if _any_ other package uses a types package that uses newer TS
features.
In order to avoid this, we opt out of the automatic types resolution -
since we are not using any `@types/xxx` package in angular as of now,
this doesn't change anything.
See https://www.typescriptlang.org/tsconfig/types.html for details.
0 commit comments