Inside my tsconfig.json, I have these exclusions.
"exclude": [
"**/node_modules",
"**/*.spec.ts",
"**/*.spec.tsx",
"**/*.test.ts",
"**/*.test.tsx"
]
Which is needed so the editor doesn't squawk at jest methods. However I need the following rule for absolute import
"baseUrl": "."
How can I solve this issue?