├── .gitattributes ├── .gitignore ├── .gitmodules ├── .npmignore ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── debug.js ├── index.js ├── lib ├── dts-bundle.js ├── index.ts └── tsconfig.json ├── package.json └── test ├── expected ├── .gitattributes ├── commonjs │ └── foo-mx.d.ts ├── conflicts_dirname │ └── foo-mx.d.ts ├── default │ └── foo-mx.d.ts ├── es6 │ └── foo-mx.d.ts ├── excludeExp │ └── foo-mx.d.ts ├── excludeFunc │ └── foo-mx.d.ts ├── externals │ └── foo-mx.d.ts ├── includeExclude │ └── foo-mx.d.ts ├── out │ └── fizz │ │ └── buzz.d.ts ├── remove │ └── foo-mx.d.ts └── seprinnew │ └── bar-mx.d.ts ├── seprinnew_cli-config.json ├── src ├── commonjs │ ├── index.ts │ └── sub │ │ ├── index.ts │ │ ├── sub.service.html │ │ └── sub.service.ts ├── conflicts │ └── dirname │ │ ├── file1.ts │ │ ├── file1 │ │ └── file2.ts │ │ └── index.ts ├── es6 │ ├── index.ts │ ├── lib │ │ ├── subC.ts │ │ ├── subD.ts │ │ └── subE.ts │ └── sub.ts ├── main │ ├── Foo.ts │ ├── index.ts │ └── lib │ │ ├── exported-sub.ts │ │ └── only-internal.ts └── typings │ └── external.d.ts └── test.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/README.md -------------------------------------------------------------------------------- /debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/debug.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/index'); 2 | -------------------------------------------------------------------------------- /lib/dts-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/lib/dts-bundle.js -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/lib/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/.gitattributes: -------------------------------------------------------------------------------- 1 | *.ts eol=lf 2 | -------------------------------------------------------------------------------- /test/expected/commonjs/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/commonjs/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/conflicts_dirname/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/conflicts_dirname/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/default/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/default/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/es6/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/es6/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/excludeExp/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/excludeExp/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/excludeFunc/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/excludeFunc/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/externals/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/externals/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/includeExclude/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/includeExclude/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/out/fizz/buzz.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/out/fizz/buzz.d.ts -------------------------------------------------------------------------------- /test/expected/remove/foo-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/remove/foo-mx.d.ts -------------------------------------------------------------------------------- /test/expected/seprinnew/bar-mx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/expected/seprinnew/bar-mx.d.ts -------------------------------------------------------------------------------- /test/seprinnew_cli-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/seprinnew_cli-config.json -------------------------------------------------------------------------------- /test/src/commonjs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/commonjs/index.ts -------------------------------------------------------------------------------- /test/src/commonjs/sub/index.ts: -------------------------------------------------------------------------------- 1 | export * from './sub.service'; 2 | -------------------------------------------------------------------------------- /test/src/commonjs/sub/sub.service.html: -------------------------------------------------------------------------------- 1 |

{{getName()}}

2 | -------------------------------------------------------------------------------- /test/src/commonjs/sub/sub.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/commonjs/sub/sub.service.ts -------------------------------------------------------------------------------- /test/src/conflicts/dirname/file1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/conflicts/dirname/file1.ts -------------------------------------------------------------------------------- /test/src/conflicts/dirname/file1/file2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/conflicts/dirname/file1/file2.ts -------------------------------------------------------------------------------- /test/src/conflicts/dirname/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/conflicts/dirname/index.ts -------------------------------------------------------------------------------- /test/src/es6/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/es6/index.ts -------------------------------------------------------------------------------- /test/src/es6/lib/subC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/es6/lib/subC.ts -------------------------------------------------------------------------------- /test/src/es6/lib/subD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/es6/lib/subD.ts -------------------------------------------------------------------------------- /test/src/es6/lib/subE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/es6/lib/subE.ts -------------------------------------------------------------------------------- /test/src/es6/sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/es6/sub.ts -------------------------------------------------------------------------------- /test/src/main/Foo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/main/Foo.ts -------------------------------------------------------------------------------- /test/src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/main/index.ts -------------------------------------------------------------------------------- /test/src/main/lib/exported-sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/main/lib/exported-sub.ts -------------------------------------------------------------------------------- /test/src/main/lib/only-internal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/main/lib/only-internal.ts -------------------------------------------------------------------------------- /test/src/typings/external.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/src/typings/external.d.ts -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TypeStrong/dts-bundle/HEAD/test/test.js --------------------------------------------------------------------------------