tsconfig-sanity.ts 266 B

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