typescript-bundle
typescript-bundle copied to clipboard
A Bundling Tool for TypeScript
Hey thanks for this project. It works without problems! Is there also an option to generate a .d.ts file for the bundle?
Hello, I am trying to bundle jquery, but im getting this error. I have esModuleInterop flagged on the tsconfig.json but still getting the error
In the latest release of typescript-bundle the script tsc-bundle has a \r char - a DOS carriage return character at the end of the #!/usr/env/node line, which means it fails...
`tsc-bundle` seems to always call the global `tsc` executable, it will be nice to make it use the project local `node_modules/.bin/tsc` if available, as many projects wants to use an...
I'm making a React SVG icon library which uses rollup and the react-svg-loader to automatically resolve SVG imports into a ready-to-go React SVG component. The module mapper file looks like...
Generated bundle contains ``` //# sourceMappingURL=index.js.map 'marker:resolver'; ``` In the middle. Loaders cannot find sourcemap reference, `//# sourceMappingURL=index.js.map` it should be moved to last line of the file
Consider a simple project with a single source file `main.ts`, containing ``` console.log("hello world!"); ``` Compiling this project with `--entryPoint main` and then running with `node bin/bundle.js` gives ``` Error:...
In Node, a common idiom for checking if the current module is the one that was directly invoked is `if (require.main === module) { ... }`. [Here are the docs](https://nodejs.org/api/modules.html#modules_accessing_the_main_module)....
I expected it can handle both multi-file project and single-file project, (tsc will not emit the "define" when there are only one source) Or just rollback to use tsc when...
Hello, I am not sure if this is issue but at least I try. Problem is that debugger seems to stop like 5-10 lines after it should. So if I...