My directory structure:
frontend
-- node_modules
backend
-- node_modules
- tsconfig.json
In my tsconfig.json, I have:
"exclude": [
"frontend/node_modules", "backend/node_modules"
]
Still, I get errors from packages in node_modules.
What am I doing wrong?
// Per