mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
(experimental at this point) Language service refactoring action that can convert `@Input()` declarations to signal inputs. The user can click on an `@Input` property declaration in e.g. the VSCode extension and ask for the input to be migrated. All references, imports and the declaration are updated automatically. PR Close #57214
20 lines
663 B
Text
20 lines
663 B
Text
load("//tools:defaults.bzl", "ts_library")
|
|
|
|
package(default_visibility = ["//packages/language-service:__subpackages__"])
|
|
|
|
ts_library(
|
|
name = "testing",
|
|
testonly = True,
|
|
srcs = glob(["**/*.ts"]),
|
|
deps = [
|
|
"//packages/compiler",
|
|
"//packages/compiler-cli/src/ngtsc/core:api",
|
|
"//packages/compiler-cli/src/ngtsc/file_system",
|
|
"//packages/compiler-cli/src/ngtsc/file_system/testing",
|
|
"//packages/compiler-cli/src/ngtsc/testing",
|
|
"//packages/compiler-cli/src/ngtsc/typecheck/api",
|
|
"//packages/language-service:api",
|
|
"//packages/language-service/src",
|
|
"@npm//typescript",
|
|
],
|
|
)
|