PASSAGGIO A VITE !

AGG. 1.1.23
This commit is contained in:
Surya Paolo
2025-03-01 14:15:40 +01:00
parent bc960d38a1
commit c52ca22c83
520 changed files with 3618692 additions and 5448 deletions

9
src/helpers.ts Executable file
View File

@@ -0,0 +1,9 @@
import { resolve, join } from 'path';
// Ottieni la radice del progetto
const ROOT = resolve(__dirname, '.');
// Funzione per unire la radice con altri argomenti passati
export function root(...args: string[]): string {
return join(ROOT, ...args);
}