File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1256,10 +1256,7 @@ async function performIndexingOnce(
12561256 ...( project . runtimeOverrides . extraExcludePatterns ?. length
12571257 ? {
12581258 config : {
1259- exclude : [
1260- ...EXCLUDED_GLOB_PATTERNS ,
1261- ...project . runtimeOverrides . extraExcludePatterns
1262- ]
1259+ exclude : [ ...EXCLUDED_GLOB_PATTERNS , ...project . runtimeOverrides . extraExcludePatterns ]
12631260 }
12641261 }
12651262 : { } ) ,
Original file line number Diff line number Diff line change @@ -69,7 +69,10 @@ export async function loadServerConfig(): Promise<ServerConfig | null> {
6969
7070 if ( Array . isArray ( config . projects ) ) {
7171 result . projects = ( config . projects as unknown [ ] )
72- . filter ( ( project ) : project is Record < string , unknown > => typeof project === 'object' && project !== null )
72+ . filter (
73+ ( project ) : project is Record < string , unknown > =>
74+ typeof project === 'object' && project !== null
75+ )
7376 . map ( ( project ) => {
7477 const rawRoot = typeof project . root === 'string' ? project . root . trim ( ) : '' ;
7578 if ( ! rawRoot ) {
You can’t perform that action at this time.
0 commit comments