UNPKG

@qso-soft/shared

Version:

Shared library for QSO-soft

13 lines 797 B
import path, { dirname, sep } from 'path'; import { fileURLToPath } from 'url'; const _filename = fileURLToPath(import.meta.url); const _dirname = dirname(_filename); export const INPUTS_CSV_FOLDER = path.resolve(_dirname, '../_inputs/csv'); export const INPUTS_JSON_FOLDER = path.resolve(_dirname, '../_inputs/json'); export const OUTPUTS_CSV_FOLDER = path.resolve(_dirname, '../_outputs/csv'); export const OUTPUTS_JSON_FOLDER = path.resolve(_dirname, '../_outputs/json'); export const MAILS_FOLDER = `${INPUTS_CSV_FOLDER}${sep}mails`; export const INPUTS_INVITES_FOLDER = `${INPUTS_CSV_FOLDER}${sep}invites`; export const OUTPUTS_INVITES_FOLDER = `${OUTPUTS_JSON_FOLDER}${sep}invites`; export const CHECKERS_FOLDER = `${OUTPUTS_CSV_FOLDER}${sep}checkers`; //# sourceMappingURL=file-paths.js.map