Amplify has re-imagined the way frontend developers build fullstack applications. Develop and deploy without the hassle.

Page updated Apr 29, 2024

Typescript Strict Mode

This section lists known TypeScript errors and their workarounds when strict mode is enabled on your application.

Declaration file for GraphQL

If you see the error

Could not find a declaration file for module 'graphql/error/GraphQLError'`
Could not find a declaration file for module 'graphql/language/ast'`

Add a declaration file src/types.d.ts with the following content to resolve the error:

declare module 'graphql/language/ast' { export type DocumentNode = any }
declare module 'graphql/error/GraphQLError' { export type GraphQLError = any }

Declaration file for aws-exports

If you see the error

Could not find a declaration file for module './aws-exports'. 'aws-exports.js' implicitly has an 'any' type.

Create a aws-exports.d.ts file on the same level as aws-exports with the following content:

declare const awsmobile: Record<string, any>
export default awsmobile;