implicit any typescript code example
Example 1: typescript how to mode json files when compile
{
"compilerOptions": {
"resolveJsonModule": true,
},
"include": [
"*/src/**/package.json"
]
}
Example 2: how to allow implicit any in .d.ts
{
"compilerOptions": {
"skipLibCheck": true,
...
},
...
}