TSCONFIG PATH Si vous êtes sûr que le module existe, essayez ces étapes:

//One path to resolve this error is:

//Add a package.json file with the content: {"name": "@services"} 
//in services folder.

//The import must be 
import TheService from '@services/the_service';

// React-native and TypeScript use individual methods to find 
// files with absolute paths. This way fix this error to me :)
GutoTrosla