We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1st issue - Is that Document was not defined when trying to compile.
Document
tsconfig.json was resolved with the following fix:
tsconfig.json
"lib": ["es2016", "DOM"],
2nd Issue - Is that launcher.ts compiles with this error:
launcher.ts
src/launcher/launcher.ts:90:15 - error TS2322: Type '{ filename: string; data: any; }' is not assignable to type 'string'. 90 { 91 filename: 'log.json', 92 data: results, 93 }, src/launcher/launcher.ts:94:15 - error TS2322: Type '{ filename: string; data: { someLog: any; }; }' is not assignable to type 'string'. 94 { ~ 95 filename: 'old-log.json', ... 98 } 99 },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1st issue - Is that
Document
was not defined when trying to compile.tsconfig.json
was resolved with the following fix:2nd Issue - Is that
launcher.ts
compiles with this error:The text was updated successfully, but these errors were encountered: