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
I'm receiving this error. It seems I can't import the types.
error TS7016: Could not find a declaration file for module '@mathigon/fermat'
I installed using npm install @mathigon/fermat and tried to use the gcd like in the docs.
npm install @mathigon/fermat
gcd
package.json
{ "type": "module", "dependencies": { "@mathigon/fermat": "^1.1.23", "@types/node": "^22.10.1", "tsx": "^4.19.2" } }
Using node version v23.2.0.
tsconfig.json
{ "compilerOptions": { "target": "ESNext", "lib": ["ESNext"], "moduleDetection": "auto", "module": "NodeNext", "moduleResolution": "NodeNext", "typeRoots": ["node_modules/@types"], "allowImportingTsExtensions": true, "allowJs": true, "checkJs": true, "noEmit": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "strict": true, "skipLibCheck": true, }, "exclude": [ "node_modules" ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm receiving this error. It seems I can't import the types.
I installed using
npm install @mathigon/fermat
and tried to use thegcd
like in the docs.package.json
Using node version v23.2.0.
tsconfig.json
The text was updated successfully, but these errors were encountered: