Files
Noa cb3ac50bdf [TS] Http procedure API (#3731)
# Description of Changes

Provides a fetch-alike API on `ctx.http`. I guess it could just be
`ctx.fetch()` instead of `ctx.http.fetch()`, but I'm not sure if that's
a good idea.

# Expected complexity level and risk

2

# Testing

<!-- Describe any testing you've done, and any testing you'd like your
reviewers to do,
so that you're confident that all the changes work as expected! -->

- [x] Need to verify that this actually works
- [ ] <!-- maybe a test you want a reviewer to do, so they can check it
off when they're satisfied. -->
2025-11-25 01:26:27 +00:00

29 lines
798 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"strict": true,
"declaration": true,
"emitDeclarationOnly": false,
"noEmit": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowImportingTsExtensions": true,
"noImplicitAny": true,
"moduleResolution": "Bundler",
"isolatedDeclarations": false,
// This library is ESM-only, do not import commonjs modules
"esModuleInterop": false,
"allowSyntheticDefaultImports": false,
"useDefineForClassFields": true,
// Crucial when using esbuild/swc/babel instead of tsc emit:
"verbatimModuleSyntax": true,
"isolatedModules": true
},
"include": ["src/index.ts", "tests/**/*"],
"exclude": ["node_modules", "**/__tests__/*", "dist/**/*"]
}