This message was deleted.
# typescript
s
This message was deleted.
w
Just import all the other files into
index.ts
- right?
l
Guess so, but my attempt doesn’t seem to work.
w
If you want to import from another file but not actually reference any outputs, TypeScript has an unfortunate rule that you have to use the
import "./foo"
form.
l
Indeed, bitten by that TS issue.
Tnx.