zanminkian
zanminkian
It's not similar with other extensions. Maybe it's not a bug. But user will be confused when finding not thing about this extension in settings.
Hi! Thanks for providing such a good extension! But there is still a tiny enhancement to improve this extension in my humble opinion. Is it possible that remove the `xx%`...
## Array ok ```ts let name: string = '' ; if (Math.random() > 0.5) { name = "foo" } const names = ["bar", ...(name && [name])] ``` fail ```ts let...
This PR fix 2 issues: ### ~~Issue 1: trim gitignore file content~~ ### Issue 2: pattern starts with `./` or `./` should not be ignored ``` foo ├── .gitignore --->...
### Description When spreading an object conditionally, we have two style: `? :` and `&&`. I prefer user consistently to use `&&`. ### Pass ```ts const name = Math.random() >...
### 🚀 Feature Proposal ```ts /** @type {import('ts-jest').JestConfigWithTsJest} */ module.exports = { // [...] transform: { // '^.+\\.[tj]sx?$' to process js/ts with `ts-jest` // '^.+\\.m?[tj]sx?$' to process js/ts/mjs/mts with `ts-jest`...
### Feature request TS 5.5 support `${configDir}` template variable. See [here](https://devblogs.microsoft.com/typescript/announcing-typescript-5-5-beta/#the-configdir-template-variable-for-configuration-files). ```ts import { parseTsconfig } from "get-tsconfig"; const tsconfig = parseTsconfig('/path/to/tsconfig.json'); console.log(tsconfig.compileOptions.outDir) // if there is `${configDir}` template variable...