* Fixes that the flat module out files do not have a proper AMD module name on Windows. This is currently blocking serving a `ng_module` using the Bazel TypeScript `devserver` on Windows. PR Close #27839
17 lines
329 B
Python
17 lines
329 B
Python
load("//tools:defaults.bzl", "ng_module")
|
|
|
|
package(default_visibility = ["//packages/bazel/test:__subpackages__"])
|
|
|
|
ng_module(
|
|
name = "flat_module",
|
|
srcs = [
|
|
"export.ts",
|
|
"index.ts",
|
|
],
|
|
module_name = "flat_module",
|
|
tsconfig = ":tsconfig.json",
|
|
deps = [
|
|
"//packages/core",
|
|
],
|
|
)
|