Skip to content

Instantly share code, notes, and snippets.

@NicolaiSoeborg
Created September 29, 2021 20:12
Show Gist options
  • Save NicolaiSoeborg/5b626500e3d373ae4a84e62596130457 to your computer and use it in GitHub Desktop.
Save NicolaiSoeborg/5b626500e3d373ae4a84e62596130457 to your computer and use it in GitHub Desktop.
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