api.jonasjones.dev/node_modules/wrangler/templates/__tests__/tsconfig-sanity.ts

12 lines
321 B
TypeScript

// `@types/node` should be included
Buffer.from("test");
// `@types/jest` should be included
test("test");
// @ts-expect-error `@cloudflare/workers-types` should NOT be included
const _handler: ExportedHandler = {};
// @ts-expect-error `@cloudflare/workers-types` should NOT be included
new HTMLRewriter();
export {};