Skip to content

Commit

Permalink
improve README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrecabriere committed Jan 14, 2025
1 parent 74352d3 commit b960e24
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b960e24

Please sign in to comment.