mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
29 lines
589 B
Text
29 lines
589 B
Text
load("//tools:defaults.bzl", "ts_config")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
exports_files([
|
|
"tsconfig.json",
|
|
"start-server.js",
|
|
"index.html",
|
|
])
|
|
|
|
ts_config(
|
|
name = "tsconfig_build",
|
|
src = "tsconfig.json",
|
|
deps = [
|
|
"//:node_modules/@types/angular",
|
|
"//:node_modules/@types/jasmine",
|
|
"//:node_modules/tslib",
|
|
],
|
|
)
|
|
|
|
ts_config(
|
|
name = "tsconfig_e2e",
|
|
src = "tsconfig-e2e.json",
|
|
deps = [
|
|
":tsconfig_build",
|
|
"//:node_modules/@types/jasminewd2",
|
|
"//:node_modules/@types/node",
|
|
],
|
|
)
|