While reviewing some TypeScript code, I came across the following import
:
import { URLS } from '#constants';
This seems to be a different way of writing:
import { URLS } from './constants';
I'm curious about the significance of the #
symbol in this context, especially when used at the beginning of the import statement. Can you shed some light on this for me?