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
Imports in my react native project are showing up in lcov reports and SonarQube as uncovered lines
babel.config.js
module.exports = { presets: [ "module:metro-react-native-babel-preset" ], plugins: [ "@babel/plugin-proposal-object-rest-spread", ["@babel/plugin-proposal-decorators", { "legacy": true }], "module:react-native-dotenv" ], env: { production: { plugins: ["transform-remove-console"] }, } };
metro.config.js
module.exports = { transformer: { getTransformOptions: async () => ({ transform: { experimentalImportSupport: false, inlineRequires: true, }, }), }, };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Imports in my react native project are showing up in lcov reports and SonarQube as uncovered lines
babel.config.js
metro.config.js
The text was updated successfully, but these errors were encountered: