compiling-typescript
compiling-typescript copied to clipboard
A Simple, Extensible TypeScript Application
Getting a compiler error: ``` src/server/server.ts:53:11 - error TS2739: Type 'ParsedQs' is missing the following properties from type 'Question': title, content 53 const question : Question = req.query; ~~~~~~~~ ```
With typescript ^4.0.5 the compiler is creating an empty "export {}" in the transpiled client.js file and the browser fails to load the code and issues a "typescript Uncaught SyntaxError:...
Fixes #1 but I'm not sure if this is the "best" way.