mirror of https://github.com/lukechilds/rollup.git
Rich Harris
8 years ago
9 changed files with 37 additions and 0 deletions
@ -0,0 +1,4 @@ |
|||
module.exports = { |
|||
solo: true, |
|||
description: 'includes all declarations referenced by reified namespaces' |
|||
} |
@ -0,0 +1,5 @@ |
|||
define(function () { 'use strict'; |
|||
|
|||
|
|||
|
|||
}); |
@ -0,0 +1,2 @@ |
|||
'use strict'; |
|||
|
@ -0,0 +1,6 @@ |
|||
(function () { |
|||
'use strict'; |
|||
|
|||
|
|||
|
|||
}()); |
@ -0,0 +1,9 @@ |
|||
(function (global, factory) { |
|||
typeof exports === 'object' && typeof module !== 'undefined' ? factory() : |
|||
typeof define === 'function' && define.amd ? define(factory) : |
|||
(factory()); |
|||
}(this, (function () { 'use strict'; |
|||
|
|||
|
|||
|
|||
}))); |
@ -0,0 +1,7 @@ |
|||
import * as unused from './unused.js'; |
|||
|
|||
var indirection = { |
|||
unused: unused |
|||
}; |
|||
|
|||
export { indirection }; |
@ -0,0 +1 @@ |
|||
import { indirection } from './indirection.js'; |
@ -0,0 +1,3 @@ |
|||
function foo () {} |
|||
|
|||
export { foo }; |
Loading…
Reference in new issue