Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

12
node_modules/tsconfig-paths/lib/register.d.ts generated vendored Normal file
View File

@@ -0,0 +1,12 @@
import { ExplicitParams } from "./config-loader";
export interface RegisterParams extends ExplicitParams {
/**
* Defaults to `--project` CLI flag or `process.cwd()`
*/
cwd?: string;
}
/**
* Installs a custom module load function that can adhere to paths in tsconfig.
* Returns a function to undo paths registration.
*/
export declare function register(params?: RegisterParams): () => void;