tsify icon indicating copy to clipboard operation
tsify copied to clipboard

Browserify plugin for compiling TypeScript

Results 30 tsify issues
Sort by recently updated
recently updated
newest added

Bumps [shell-quote](https://github.com/substack/node-shell-quote) from 1.6.1 to 1.7.3. Release notes Sourced from shell-quote's releases. v1.7.2 Fix a regression introduced in 1.6.3. This reverts the Windows path quoting fix. (144e1c2) v1.7.1 Fix $...

dependencies

Bumps [tar](https://github.com/npm/node-tar) from 4.4.8 to 4.4.19. Commits 9a6faa0 4.4.19 70ef812 drop dirCache for symlink on all platforms 3e35515 4.4.18 52b09e3 fix: prevent path escape using drive-relative paths bb93ba2 fix: reserve...

dependencies

Bumps [ini](https://github.com/npm/ini) from 1.3.5 to 1.3.8. Commits a2c5da8 1.3.8 af5c6bb Do not use Object.create(null) 8b648a1 don't test where our devdeps don't even work c74c8af 1.3.7 024b8b5 update deps, add linting...

dependencies

## General When building a TypeScript-project with `composite: true` TypeScript tries to find a path to store the `.tsbuildinfo`-file. This process fails with following error-message while running `browserify`: ``` Paths...

wontfix

Bumps [cached-path-relative](https://github.com/ashaffer/cached-path-relative) from 1.0.2 to 1.1.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cached-path-relative&package-manager=npm_and_yarn&previous-version=1.0.2&new-version=1.1.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Fixes #273 @cartant Can you merge?

npm 7 has a breaking change. Can you fix? ``` $ npm i npm ERR! code ERESOLVE npm ERR! ERESOLVE unable to resolve dependency tree npm ERR! npm ERR! While...

Browserify have an option to specify which paths to look through when a file is "required" (`browserify({paths: ["./source/App"]})`), but that doesn't seem to work with tsify. It is very helpful...

enhancement

Hey i just decided I would move from using tsc and browserify separately to using tsify. it worked just fine but after installing and using tsify it gives a strange...

Compiling, then running the following TypeScript module output `undefined`: ```ts import tsify from "tsify"; console.log(tsify); // undefined ``` Of course, passing `tsify` to Browserify would throw a `Cannot find module...