tsconfig-sanity.ts 321 B

123456789101112
  1. // `@types/node` should be included
  2. Buffer.from("test");
  3. // `@types/jest` should be included
  4. test("test");
  5. // @ts-expect-error `@cloudflare/workers-types` should NOT be included
  6. const _handler: ExportedHandler = {};
  7. // @ts-expect-error `@cloudflare/workers-types` should NOT be included
  8. new HTMLRewriter();
  9. export {};