Open AaronConlon opened 1 year ago
Yes, the description is correct.
When executing a TS file, Bunjs doesn't check the file for typescript errors.
See: https://bun.sh/docs/runtime/typescript#running-ts-files
Note — Similar to other build tools, Bun does not typecheck the files. Use tsc (the official TypeScript CLI) if you're looking to catch static type errors.
I use bunjs to exec a ts file:
TypeScript will not throw error.So, is your description is right? thanks.