tsconfig build json code example
Example 1: tsconfig.json not generated
$ tsc --init
Example 2: how to allow implicit any in .d.ts
{
"compilerOptions": {
"skipLibCheck": true,
...
},
...
}
$ tsc --init
{
"compilerOptions": {
"skipLibCheck": true,
...
},
...
}