mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-22 19:02:54 -04:00
33 lines
421 B
TypeScript
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'
|
|
);
|