From b960e24d38d09198df1b0e6442223cbbdfde1498 Mon Sep 17 00:00:00 2001 From: pierrecabriere Date: Tue, 14 Jan 2025 11:31:14 -0500 Subject: [PATCH] improve README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 044a4c9..ca179b5 100644 --- a/README.md +++ b/README.md @@ -122,8 +122,24 @@ src/ ├── stories/ # Storybook stories │ ├── components/ # Component stories │ └── pages/ # Page stories +supabase/ +└── functions/ # Supabase Edge Functions (Deno) ``` +## IDE Configuration + +### VS Code + +If you're using VS Code, you can limit Deno's type checking to only the Supabase functions directory by adding this to your `.vscode/settings.json`: + +```json +{ + "deno.enablePaths": ["supabase/functions"] +} +``` + +This ensures that Deno only runs in the Supabase Edge Functions directory and doesn't interfere with the rest of your TypeScript setup. + ## Available Scripts - `npm run dev` - Start development server