feat: CLI-утилита для генерации файлов из шаблонов
Реализовано: - Генерация файлов из папки .templates с подстановкой переменных - Цветной вывод в терминал с иконками и деревом файлов - Валидация аргументов и проверка существования папок - Поддержка --dry-run, --overwrite, произвольных переменных
This commit is contained in:
16
tsconfig.json
Normal file
16
tsconfig.json
Normal 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"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user