typescript-strict-plugin icon indicating copy to clipboard operation
typescript-strict-plugin copied to clipboard

Exclude paths / globs (files like `*.spec.ts`).

Open infacto opened this issue 3 years ago • 0 comments

Great plugin for partial strict mode refactoring. But I want to exclude files like *.spec.ts (unit test).

tsconfig.json (my current config)

{
  "strict": false,
  "plugins": [
    {
      "name": "typescript-strict-plugin",
      "paths": ["./src"]
    }
  ]
}

Split paths to include and exclude similar like the tsconfig one.

infacto avatar Aug 15 '22 08:08 infacto