In my project, I defined an enum inside the "country-details/enum" folder:
export enum ConfigTypes {
STAFF, PROD
}
When trying to import this enum into another component, I encountered a "cannot resolve symbol" error.
It's worth mentioning that my component is situated in the root folder which includes the "country-details" folder:
import {ConfigTypes} from "country-details/enum";
What could be causing this issue?