feat: CLI-утилита для генерации файлов из шаблонов

Реализовано:
- Генерация файлов из папки .templates с подстановкой переменных
- Цветной вывод в терминал с иконками и деревом файлов
- Валидация аргументов и проверка существования папок
- Поддержка --dry-run, --overwrite, произвольных переменных
This commit is contained in:
2026-01-26 20:27:38 +03:00
commit c46122e62d
14 changed files with 1343 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "Node",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"include": [
"src/**/*.ts"
]
}