1. 리액트 네이티브 타입스크립트 실행하기

npx react-native init 프로젝트명 --template react-native-template-typescript

2. 경로 설정

yarn add --dev babel-plugin-module-resolver

tsconfig.json

{
  "extends": "@react-native/typescript-config/tsconfig.json",
 "compilerOptions": {
  "baseUrl": ".",
  "paths": {
    "*": ["src/*"],
    "tests": ["tests/*"],
    "@components/*":["src/components/*"]
  }
 } 
}

babel.config.js

module.exports = {
  presets: ['module:@react-native/babel-preset'],
  plugins: [
    [
      'module-resolver',
      {
        root: ['./src'],
        extensions: ['.ios.js', '.android.js', '.js', '.ts', '.tsx', '.json'],
        alias: {
          tests: ['./tests/'],
          '@components': './src/components',
        },
      },
    ],
  ],
};