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

49 lines
780 B
JSON

{
"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",
"node-resolve:"
]
},
{
"name": "main",
"includes": [
"/src/",
"/rules/"
],
"match": []
},
{
"name": "virtual",
"includes": [],
"match": [
"virtual:"
]
}
]
}