I added a file to the HTML/js/tinymce folder called tsconfig.json with the following content:
{
"compilerOptions": { "lib": [ "es2015", "dom" ] },
"exclude": [ "/bin", "/bower_components", "/jspm_packages", "/node_modules", "/obj", "/platforms" ]
}
It allows me to run the project but still get the error above along with some other errors. These errors are:
Error TS2304 (TS) Cannot find name 'ArrayLike'. Miscellaneous C:\Program Files (x86)\Microsoft SDKs\TypeScript\4.3\lib.es2015.iterable.d.ts 83 Active
Error TS2304 (TS) Cannot find name 'ArrayLike'. Miscellaneous C:\Program Files (x86)\Microsoft SDKs\TypeScript\4.3\lib.es2015.iterable.d.ts 91 Active
Error TS2304 (TS) Cannot find name 'PromiseLike'. Miscellaneous C:\Program Files (x86)\Microsoft SDKs\TypeScript\4.3\lib.es2015.iterable.d.ts 226 Active
Error TS2304 (TS) Cannot find name 'PromiseLike'. Miscellaneous C:\Program Files (x86)\Microsoft SDKs\TypeScript\4.3\lib.es2015.iterable.d.ts 234 Active
Error TS2304 (TS) Cannot find name 'PromiseLike'. Miscellaneous C:\Program Files (x86)\Microsoft SDKs\TypeScript\4.3\lib.es2015.iterable.d.ts 242 Active
Any help on getting these errors cleaned up would be very much appreciated.
Thanks, William