Refactoring base files

This commit is contained in:
Sergei_Verbitski
2026-03-23 18:47:49 +03:00
parent 8575fd6db8
commit 76bea61d91
12 changed files with 114 additions and 8194 deletions

View File

@@ -66,7 +66,6 @@ function getModuleAliases() {
if (fs.existsSync(modulesDir)) {
const folders = fs.readdirSync(modulesDir);
folders.forEach((folder) => {
// Проверяем, что это папка и внутри есть src/index.ts
const moduleSrcPath = path.join(modulesDir, folder, 'src', 'index.ts');
if (fs.existsSync(moduleSrcPath)) {
aliases[`@itprom/${folder}`] = moduleSrcPath;