dependency-graph-construction
Version:
A powerful tool to construct dependency graphs for JavaScript and TypeScript projects. Useful for project structure analysis and debugging.
11 lines (9 loc) • 363 B
JavaScript
export const BACKSLASH = '/';
export const FILE_EXTENSIONS = [
'.native.js', '.native.jsx', '.native.ts', '.native.tsx',
'.web.js', '.web.jsx', '.web.ts', '.web.tsx',
'.android.js', '.android.jsx', '.android.ts', '.android.tsx',
'.ios.js', '.ios.jsx', '.ios.ts', '.ios.tsx',
'.js', '.jsx', '.ts', '.tsx'
];
export const MAX_LEVEL = 100000;