typescript-strict-plugin
typescript-strict-plugin copied to clipboard
Exclude paths / globs (files like `*.spec.ts`).
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.