just found a bug, I think. I have a whole bunch of...
# help
s
just found a bug, I think. I have a whole bunch of invalid
import
statements (bad paths) and SST let me run
yarn start
and got all the way through type-checking, building, and was about to start a debug process and then it bombed. I ran
yarn test
after just to see, and it reports no issues.
t
This is likely a monorepo specific issue. The typechecking is only run on the
include
paths which now doesn't include your code. I don't think SST runs type checking when building your code (since esbuild doesn't support typechecking)
We should probably run tsc per tsconfig if in monorepo mode
s
ahhh 🤔
f
There’s an open issue around this topic that might be related https://github.com/serverless-stack/serverless-stack/issues/662