Skip to content

Commit

Permalink
🪲 Add super critical nop include to fix import issues.
Browse files Browse the repository at this point in the history
What? Apprently without that include (which should do nothing) the
@/models import isn't resolved correctly in tests/setup.ts.

I have no idea why.
I'm pretty sure this was a typo originally, but without it, imports don't seem to work correctly.
  • Loading branch information
klondikemarlen committed Jun 5, 2024
1 parent 8f51919 commit de348b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/tests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
},
"types": ["node", "../vitest/globals"]
},
"include": ["../src/**/*", "../tests/**/*"]
"include": ["../src/**/*", "../tests/**/*", ""]
}

0 comments on commit de348b6

Please sign in to comment.