export const ALIAS_SEPARATOR = '-'; export const SELECTOR_SEPARATOR = '.'; export const INVALID_CHARS = /[\/\| \\~,@#$%^&*(){}|[\]?<>"'+=!]/g; export const DEFAULT_INCLUDE_CORE_TOKENS_IN_SCOPES = false; export type parserOptions = { tokenNameTemplate?: string | undefined; tokenNotInCollectionNameTemplate?: string | undefined; };