World script fails if import doesn't include extension

If you attempt to import something without an extension and it runs on the server, the world script fails.
E.g.

import { stuff } from 'MyComponent' // This fails
import { stuff } from 'MyComponent.ts' // This is fine

If this is the desired functionality, it should be documented when the world script fails (e.g. “World server script has failed. Please check your imports have extensions”).