This PR also changes the name of NgNoValidate` to `ɵNgNoValidate`. This is because `ngcc` requires the node to retain the original name while dts bundler will rename the node is it's only exported using the aliases.
Example typings files:
```ts
declare class NgNoValidate{
}
export {NgNoValidateas ɵNgNoValidate}
```
will be emitted as
```ts
export declare class ɵNgNoValidate {
}
```
PR Close #28854
		
	
			
		
			
				
	
	
		
			39 lines
		
	
	
		
			873 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			873 B
		
	
	
	
		
			Python
		
	
	
	
	
	
load("//tools:defaults.bzl", "ng_module", "ng_package")
 | 
						|
 | 
						|
package(default_visibility = ["//visibility:public"])
 | 
						|
 | 
						|
ng_module(
 | 
						|
    name = "forms",
 | 
						|
    srcs = glob(
 | 
						|
        [
 | 
						|
            "*.ts",
 | 
						|
            "src/**/*.ts",
 | 
						|
        ],
 | 
						|
    ),
 | 
						|
    bundle_dts = True,
 | 
						|
    deps = [
 | 
						|
        "//packages/core",
 | 
						|
        "//packages/platform-browser",
 | 
						|
        "@npm//rxjs",
 | 
						|
    ],
 | 
						|
)
 | 
						|
 | 
						|
ng_package(
 | 
						|
    name = "npm_package",
 | 
						|
    srcs = ["package.json"],
 | 
						|
    entry_point = "packages/forms/index.js",
 | 
						|
    tags = [
 | 
						|
        "release-with-framework",
 | 
						|
    ],
 | 
						|
    # Do not add more to this list.
 | 
						|
    # Dependencies on the full npm_package cause long re-builds.
 | 
						|
    visibility = [
 | 
						|
        "//packages/compiler-cli/integrationtest:__pkg__",
 | 
						|
        "//packages/compiler-cli/test/diagnostics:__pkg__",
 | 
						|
        "//packages/language-service/test:__pkg__",
 | 
						|
    ],
 | 
						|
    deps = [
 | 
						|
        ":forms",
 | 
						|
    ],
 | 
						|
)
 |