1
0
Fork 0
cautious-journey/config/rollup/chunks.json

49 lines
780 B
JSON
Raw Normal View History

2020-09-06 21:51:53 +00:00
{
"chunks": [
{
"name": "index",
"includes": [
"/src/index"
],
"match": []
},
{
"name": "test",
"includes": [
"/test/"
],
"match": [
"node_modules/chai",
"node_modules/chai-as-promised",
"node_modules/sinon",
"node_modules/sinon-chai"
]
},
{
"name": "vendor",
"includes": [
"node_modules/"
],
"match": [
"commonjs-external",
"commonjsHelpers",
2020-09-06 21:59:19 +00:00
"node-resolve:"
2020-09-06 21:51:53 +00:00
]
},
{
"name": "main",
"includes": [
"/src/",
"/rules/"
],
"match": []
2020-09-06 21:59:19 +00:00
},
{
"name": "virtual",
"includes": [],
"match": [
"virtual:"
]
2020-09-06 21:51:53 +00:00
}
]
}