Check out my tsconfig.json
file:
{
"compilerOptions": {
"allowArbitraryExtensions":true,
"target": "ES2021",
"lib": [
"ES2021", "dom", "dom.iterable"
],
"moduleResolution": "node",
"resolveJsonModule": true,
"strictFunctionTypes": true
},
"lib": ["ES2021"],
"exclude": ["node_modules", "dist","tmp"]
}
This configuration is working well for me, but I am interested in implementing stricter rules for a specific section of my project. Specifically, I want to enforce the rule "noImplicitAny": true,
Is there a way to do this within my existing setup?