Can you create a tsconfig.json at the root of the project with these contents?
{
"compilerOptions": {
"allowJs": true,
"noImplicitAny": true,
},
"files": ["index.js"] // this file should be your project entry point
}
Please let me know if that helps