Files
freeCodeCamp/tools/challenge-editor/api/configs/paths.ts

33 lines
421 B
TypeScript

import { join } from 'path';
export const SUPERBLOCK_META_DIR = join(
process.cwd(),
'..',
'..',
'..',
'curriculum',
'structure',
'superblocks'
);
export const BLOCK_META_DIR = join(
process.cwd(),
'..',
'..',
'..',
'curriculum',
'structure',
'blocks'
);
export const CHALLENGE_DIR = join(
process.cwd(),
'..',
'..',
'..',
'curriculum',
'challenges',
'english',
'blocks'
);