how to run tsconfig.json code example
Example 1: typescript how to mode json files when compile
{
"compilerOptions": {
"resolveJsonModule": true,
},
"include": [
"*/src/**/package.json"
]
}
Example 2: tsconfig.json not generated
$ tsc --init