- Drop tsconfig.node.json: composite + noEmit conflict, and the vite.config.ts doesn't need its own project / node types. - Inline vite.config.ts in the main tsconfig include list. - Switch web build from `tsc -b` to `tsc --noEmit` since there are no project references anymore. - Make b64urlDecode return Uint8Array<ArrayBuffer> so its output is accepted by crypto.subtle.verify under stricter lib types. - Cast the Pages EventContext to ExecutionContext when forwarding to Hono; props is unused at runtime. https://claude.ai/code/session_01TPBqgcSJMppgrpiq7fLywL
11 lines
283 B
JSON
11 lines
283 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"jsx": "react-jsx",
|
|
"noEmit": true,
|
|
"types": ["vite/client", "@cloudflare/workers-types"]
|
|
},
|
|
"include": ["src/**/*", "functions/**/*", "vite.config.ts"]
|
|
}
|