-
Notifications
You must be signed in to change notification settings - Fork 1
/
nyc.config.js
63 lines (55 loc) · 2.02 KB
/
nyc.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
################################################################################
# #
# db db .8888. dP 888888b 8888ba .8888. d8b db 888888b d8888P #
# 88 88 d8' `8b 88 88 88 `8b d8' `8b 88V8 88 88 88 #
# Y8 8P 88 88 88 a88aaa 88aa8P' 88 88 88 V8 88 88aaa 88 #
# `8b d8' 88 88 88 88 88 `8b 88 88 88 V888 88 88 #
# `8bd8' Y8. .8P 88 88 88 .88 Y8. .8P dP 88 V88 88 88 #
# YP `888P' 88888P 888888P 888888' `888P' 88 VP 8P 888888P dP #
# #
################################################################################
#
# DESCRIPTION
#
# Copyright (C) 2016-2020 Volebo <[email protected]>
# Copyright (C) 2016-2020 Maksim Koryukov <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the MIT License, attached to this software package.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# You should have received a copy of the MIT License along with this
# program. If not, see <https://opensource.org/licenses/MIT>.
#
# http://spdx.org/licenses/MIT
#
################################################################################
*/
'use strict'
module.exports = {
'all': true,
// "sourceMap": false,
// "instrument": false,
'reporter': [
'html',
'lcov',
'text',
'text-summary',
// 'json-summary',
],
'report-dir': './tmp/coverage',
'include': [
'src/**',
],
// 'exclude': [
// '**/*.test.js',
// '**/*.spec.js',
// 'tests/bootstrap.js',
// ],
// ["coverage/**","packages/*/test/**","test/**","test{,-*}.js","**/*{.,-}test.js","**/__tests__/**","**/{ava,babel,jest,nyc,rollup,webpack}.config.js"]]
'excludeNodeModules': true
}