mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-06 22:38:47 +08:00
19 lines
400 B
JavaScript
19 lines
400 B
JavaScript
module.exports = {
|
|
'check-coverage': false,
|
|
lines: 95,
|
|
statements: 95,
|
|
functions: 95,
|
|
branches: 95,
|
|
include: ['packages/*/lib/**/*.js'],
|
|
exclude: [
|
|
'**/common/lib/**',
|
|
'**/lib/handlers.js',
|
|
'**/internal/registry/**',
|
|
'packages/database/lib/DatabaseSyncTree.js',
|
|
],
|
|
cwd: '..',
|
|
sourceMap: false,
|
|
instrument: false,
|
|
reporter: ['lcov', 'html', 'text-summary'],
|
|
};
|