Hi, using latest canary (7.0.0-canary.402), i got 4 red squiggly lines on server.ts. this didn’t happen before:
- on line with DEFAULT_REDWOOD_FASTIFY_CONFIG:
  // Configure Fastify
  const fastify = Fastify({
    ...DEFAULT_REDWOOD_FASTIFY_CONFIG,
  })
type error:
Types of property 'logger' are incompatible.
Two similar types have a property logger which is different, making them incompatible.
- 
on line with await fastify.register(redwoodFastifyWeb)
- 
on line with await fastify.register(redwoodFastifyAPI)
- 
on line with await fastify.register(redwoodFastifyGraphQLServer)
the 1st type error can be fixed with copy-pasting default options from redwood source:
const DEFAULT_REDWOOD_FASTIFY_CONFIG: FastifyServerOptions = {
  requestTimeout: 15_000,
  logger: {
    // Note: If running locally using `yarn rw serve` you may want to adust
    // the default non-development level to `info`
    level:
      process.env.LOG_LEVEL ?? process.env.NODE_ENV === 'development'
        ? 'debug'
        : 'warn',
  },
}
To reproduce, just install new redwood app, then enable server-file, then open vs-code
i am not TS expert, appreciate any help. thanks