mirror of
https://github.com/gwenhael-le-moine/ledgerrb.git
synced 2025-01-15 15:40:53 +01:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
var profile = {
|
|
resourceTags: {
|
|
ignore: function(filename, mid){
|
|
// only include moment/moment
|
|
return mid != "moment/moment";
|
|
},
|
|
amd: function(filename, mid){
|
|
return /\.js$/.test(filename);
|
|
}
|
|
}
|
|
};
|