build: explicitly include types for locales in @angular/common/locales (#63030)

Include the d.ts files for each local in the @angular/common/locales files

PR Close #63030
This commit is contained in:
Joey Perrott
2025-08-06 18:18:03 +00:00
committed by Andrew Scott
parent 6a3d2a0bd8
commit 847de40196
+4 -1
View File
@@ -33,5 +33,8 @@ ts_project(
npm_package(
# TODO(devversion): Remove glob for checked-in legacy locale files that haven't been
# removed in the past (when CLDR has been updated). These can be removed in a major.
srcs = ["global/%s.js" % l for l in LOCALES] + [":locales"] + glob(["global/*.js"]),
srcs = ["global/%s.js" % l for l in LOCALES] + [
":locales",
":locales_types",
] + glob(["global/*.js"]),
)