Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev-packages/cloudflare-integration-tests/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "../../tsconfig.json",

"include": ["suites/**/*.ts", "*.ts"],
"include": ["suites/**/*.ts", "*.ts", "suites/**/*.mts"],

// `suites/prisma` imports a Prisma-generated client (`./generated`) that only exists after codegen,
// so it can't be type-checked as part of the static suite check.
Expand Down
4 changes: 3 additions & 1 deletion packages/cloudflare/src/vite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ export interface SentryCloudflareVitePluginOptions {
* });
* ```
*/
export function sentryCloudflareVitePlugin(options: SentryCloudflareVitePluginOptions = {}) {
export function sentryCloudflareVitePlugin(
options: SentryCloudflareVitePluginOptions = {},
): Array<{ name: string }> {
return [
sentryOrchestrionPlugin({
injectChannelSubscribers: true,
Expand Down
Loading