ts-patch icon indicating copy to clipboard operation
ts-patch copied to clipboard

Augment the TypeScript compiler to support extended functionality

Results 26 ts-patch issues
Sort by recently updated
recently updated
newest added

Whenever I run my unit tests with Jest (with `--coverage`) and `ts-patch/compiler` set (live compiler), I get the following errors: _Loading module ts-patch/compiler failed with error: Could not acquire lock...

This works: ```json { "references": [{ "path": "../app/tsconfig.json" }] } ``` This doesn't: ```json { "references": [{ "path": "../app" }] } ```

Needs more infomration

Hello ! Currently using ts-patch in a library to copy jsdoc in a string within an annotation. My `tsconfig.json` file looks like ``` "plugins": [ { "transform": "./src/reflection/add-jsdoc-to-function-configs.ts" } ]...

In my project I am using ts-patch as a replacement of ttypescript/ But I have an issue that it let the `.d.ts` file import which ttypescript did not . leading...

Needs more infomration

When using `tspc --watch`, I expect changes in transformers that are defined inside of my project (such as `{ transform: ./transformer.js }` ) to be detected and TypeScript to re-compile...

Feature Request

![image](https://github.com/nonara/ts-patch/assets/13158709/628c6452-04b8-46f8-8ac4-4fc91fdcb04b) https://github.com/samchon/ts-patch-yarn-v3/actions/runs/5781547560/job/15666822757#step:5:31 Tried to use `ts-patch` on `yarn berry`, but readonly problem be happened. It does not occur runtime error, but patching be failed, so I think it is a...

Hello! Thank you so much for your wonderful library. It has greatly helped me and my team in refactoring and transitioning the project from strict: false to strict: true. Thanks...

After installing typescript and typescript-language-server with pnpm i -D typescript typescript-language-server, When doing ts-patch install, it successfully patches tsc.js and typescript.js, but when trying to also apply the patch to...

``` Command failed: node run-transform.js mts TypeError: Function.prototype.apply was called on undefined, which is a undefined and not a function at Module.wrappedRequire (evalmachine.:132:63) at require (node:internal/modules/helpers:179:18) at loadEntryFile (evalmachine.:398:31) at...

Hello! I've been using ts-patch for quite a while now (it's very good) and I've decided to upgrade my usage by creating unit tests for the transformers so that I...