Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

263
Views
intellisense not working with tsconfig.json, babel.config.js, and .eslintrc.json

I configure these babel.config.js, tsconfig.json, and .eslintrc.json it working fine with project run and build but it's not showing any suggestions (intellisense) with my imports. Please review and help me to fix it. So, visual sutio code show intellisense and I can work fast.

.eslintrc.js

module.exports = {
  root: true,
  extends: ['airbnb', 'airbnb/hooks', '@react-native-community'],
  settings: {
    'import/resolver': {
      alias: [
        ['assets', './assets'],
        ['components', './components'],
        ['screens', './screens'],
        ['utils', './utils'],
      ],
    },
  },
};

tsconfig.json

{
  "compilerOptions": {
    "allowSyntheticDefaultImports": true,
    "jsx": "react-native",
    "lib": [
      "dom",
      "esnext"
    ],
    "moduleResolution": "node",
    "noEmit": true,
    "skipLibCheck": true,
    "resolveJsonModule": true,
    "strict": true
  },
  "baseUrl": ".",
  "paths": {
    "assets/*": ["./assets/*"],
    "components/*": ["./components/*"],
    "screens/*": ["./screens/*"],
    "utils/*": ["./utils/*"],
  },
  "exclude": ["node_modules"],
  "extends": "expo/tsconfig.base"
}

babel.config.js

module.exports = function (api) {
  api.cache(true);
  return {
    presets: ['babel-preset-expo'],
    plugins: [
      [
        'module-resolver',
        {
          alias: {
            assets: './assets',
            components: './components',
            screens: './screens',
            utils: './utils',
          },
        },
      ],
    ],
  };
};
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!