diff --git a/dev-packages/cloudflare-integration-tests/tsconfig.json b/dev-packages/cloudflare-integration-tests/tsconfig.json index f90c59831b76..3060788bab7a 100644 --- a/dev-packages/cloudflare-integration-tests/tsconfig.json +++ b/dev-packages/cloudflare-integration-tests/tsconfig.json @@ -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. diff --git a/packages/cloudflare/src/vite/index.ts b/packages/cloudflare/src/vite/index.ts index f611748d9aec..b6b1155b6122 100644 --- a/packages/cloudflare/src/vite/index.ts +++ b/packages/cloudflare/src/vite/index.ts @@ -77,7 +77,9 @@ export interface SentryCloudflareVitePluginOptions { * }); * ``` */ -export function sentryCloudflareVitePlugin(options: SentryCloudflareVitePluginOptions = {}) { +export function sentryCloudflareVitePlugin( + options: SentryCloudflareVitePluginOptions = {}, +): Array<{ name: string }> { return [ sentryOrchestrionPlugin({ injectChannelSubscribers: true,