migrate project from JS to TS
TBD...
{
"compilerOptions": {
/* Type Checking */
/* Enable all strict type-checking options. */,
"strict": true,
/* Enable error reporting for expressions and declarations with an implied 'any' type. */,
// TODO: enable 'noImplicitAny' when the convertion to TypeScript is done
"noImplicitAny": false,
/* JavaScript Support */
/* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */,
"allowJs": true,
/* Enable error reporting in type-checked JavaScript files. */,
"checkJs": true,
}
}