File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 4
4
"target" : " es2022" ,
5
5
"useDefineForClassFields" : false ,
6
6
"forceConsistentCasingInFileNames" : true ,
7
- "strict" : true ,
7
+ // "strict": true,
8
8
"noImplicitOverride" : true ,
9
9
"noPropertyAccessFromIndexSignature" : true ,
10
10
"noImplicitReturns" : true ,
Original file line number Diff line number Diff line change 4
4
"target" : " es2022" ,
5
5
"useDefineForClassFields" : false ,
6
6
"forceConsistentCasingInFileNames" : true ,
7
- "strict" : true ,
7
+ // "strict": true,
8
8
"noImplicitOverride" : true ,
9
9
"noPropertyAccessFromIndexSignature" : true ,
10
10
"noImplicitReturns" : true ,
Original file line number Diff line number Diff line change @@ -85,9 +85,9 @@ export function readProjectInfos(): ProjectInfo[] {
85
85
( {
86
86
...workspace . projects [ name ] ,
87
87
name,
88
- port : workspace . projects [ name ] . architect ?. serve ?. options ?. port ,
88
+ port : workspace . projects [ name ] . architect ?. [ ' serve' ] ?. options ?. port ,
89
89
outputPath :
90
- workspace . projects [ name ] . architect ?. build ?. options ?. outputPath ,
90
+ workspace . projects [ name ] . architect ?. [ ' build' ] ?. options ?. outputPath ,
91
91
} as ProjectInfo )
92
92
) ;
93
93
}
Original file line number Diff line number Diff line change 3
3
"compilerOptions" : {
4
4
"module" : " commonjs" ,
5
5
"forceConsistentCasingInFileNames" : true ,
6
- "strict" : true ,
6
+ // "strict": true,
7
7
"noImplicitOverride" : true ,
8
8
"noPropertyAccessFromIndexSignature" : true ,
9
9
"noImplicitReturns" : true ,
You can’t perform that action at this time.
0 commit comments