File tree Expand file tree Collapse file tree 6 files changed +12
-13
lines changed Expand file tree Collapse file tree 6 files changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,10 @@ test --test_output=errors
38
38
build:release --workspace_status_command="node ./tools/bazel-stamp-vars.js"
39
39
40
40
################################
41
- # Settings for Ivy #
41
+ # View Engine / Ivy toggle #
42
42
################################
43
43
44
- # We want to compile with Ivy and with "ngtsc".
45
- # To build for ViewEngine, use --define=compile=legacy.
44
+ # Use "legacy" for ViewEngine and "aot" for Ivy
46
45
build --define=compile=aot
47
46
48
47
#######################
Original file line number Diff line number Diff line change 35
35
"format:bazel" : " yarn -s bazel:buildifier --lint=fix --mode=fix" ,
36
36
"format" : " yarn -s format:ts && yarn -s format:bazel" ,
37
37
"cherry-pick-patch" : " ts-node --project tools/cherry-pick-patch/ tools/cherry-pick-patch/cherry-pick-patch.ts" ,
38
- "check-rollup-globals" : " ts-node --project scripts/ scripts/check-rollup-globals.ts" ,
39
- "debug" : " ngc -p ./src/cdk/coercion/tsconfig-build.json"
38
+ "check-rollup-globals" : " ts-node --project scripts/ scripts/check-rollup-globals.ts"
40
39
},
41
40
"version" : " 9.0.0-next.0" ,
42
41
"requiredAngularVersion" : " ^9.0.0-0 || ^10.0.0-0" ,
99
98
"browser-sync" : " ^2.26.7" ,
100
99
"chalk" : " ^2.4.2" ,
101
100
"clang-format" : " ^1.2.4" ,
102
- "codelyzer" : " ^5.1.2 " ,
101
+ "codelyzer" : " ^5.2.0 " ,
103
102
"conventional-changelog" : " ^3.0.5" ,
104
103
"dgeni" : " ^0.4.11" ,
105
104
"dgeni-packages" : " ^0.27.1" ,
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ export class OverlayConfig {
74
74
// is not smart enough to see that the right-hand-side is actually an access of the same
75
75
// exact type with the same exact key, meaning that the value type must be identical.
76
76
// So we use `any` to work around this.
77
- this [ key ] = ( config ) [ key ] as any ;
77
+ this [ key ] = config [ key ] as any ;
78
78
}
79
79
}
80
80
}
Original file line number Diff line number Diff line change @@ -97,6 +97,8 @@ def ng_module(
97
97
deps = local_deps ,
98
98
tsconfig = tsconfig ,
99
99
testonly = testonly ,
100
+ # TODO(jelbourn): re-enable type checking after granular flags land in Angular.
101
+ type_check = False ,
100
102
** kwargs
101
103
)
102
104
Original file line number Diff line number Diff line change 92
92
// Codelyzer
93
93
"template-banana-in-box" : true ,
94
94
"contextual-lifecycle" : true ,
95
- // TODO(jelbourn): re-enable this when it works with TS 3.6
96
- // "contextual-decorator": true,
95
+ "contextual-decorator" : true ,
97
96
"no-output-on-prefix" : true ,
98
97
"template-no-negated-async" : true ,
99
98
"use-lifecycle-interface" : true ,
Original file line number Diff line number Diff line change @@ -2950,10 +2950,10 @@ code-point-at@^1.0.0:
2950
2950
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
2951
2951
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
2952
2952
2953
- codelyzer@^5.1.2 :
2954
- version "5.1.2 "
2955
- resolved "https://registry.yarnpkg.com/codelyzer/-/codelyzer-5.1.2. tgz#e6c08269f8796483e57e6d9b7c29723572472b1d "
2956
- integrity sha512-1z7mtpwxcz5uUqq0HLO0ifj/tz2dWEmeaK+8c5TEZXAwwVxrjjg0118ODCOCCOcpfYaaEHxStNCaWVYo9FUPXw ==
2953
+ codelyzer@^5.2.0 :
2954
+ version "5.2.0 "
2955
+ resolved "https://registry.yarnpkg.com/codelyzer/-/codelyzer-5.2.0. tgz#b0ee573a12779c996090e596c5c1755479d83758 "
2956
+ integrity sha512-izfUfhEOOgAizszPlEDxo71DK/C4wprZw0vkY6UWcOSTQvN1JyfXf9DXwaV7WX+/JC+hH0ShXfdtGLA9Rca7LA ==
2957
2957
dependencies :
2958
2958
app-root-path "^2.2.1"
2959
2959
aria-query "^3.0.0"
You can’t perform that action at this time.
0 commit comments