mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit adds back `ngcc` as a no-op operation. When invoked it will warn providing details about removing `ngcc`. In Angular 17, this will be removed. PR Close #50045
12 lines
257 B
Text
12 lines
257 B
Text
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
ts_library(
|
|
name = "ngcc",
|
|
srcs = ["index.ts"],
|
|
tsconfig = "//packages/compiler-cli:tsconfig",
|
|
deps = [
|
|
"@npm//@types/node",
|
|
],
|
|
)
|