Created
September 29, 2021 20:12
-
-
Save NicolaiSoeborg/5b626500e3d373ae4a84e62596130457 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Problem: | |
Error TS2688: Cannot find type definition file for 'frida-gum' | |
Solution: | |
yarn add --dev @types/frida-gum | |
Problem: | |
[TypeScript error: /node_modules/@types/frida-gum/index.d.ts(2317,15): Error TS2300: Duplicate identifier 'File'.] | |
Solution: | |
Create a file in the root project folder called `tsconfig.json` and add this content: | |
{ | |
"compilerOptions": { | |
"skipLibCheck": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment