Can I apply specific tsconfig options to just one file?
Here is my current tsconfig.json:
{
...
"compilerOptions": {
...
"keyofStringsOnly": false,
"resolveJsonModule": true,
"esModuleInterop": true
},
...
}
I want to use the "resolveJsonModule" and "esModuleInterop" options only in a specific component file. Is there a way to do this? Thank you.