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

Typescript plugin that allows turning on strict mode in specific files or directories.

Results 30 typescript-strict-plugin issues
Sort by recently updated
recently updated
newest added

Reproduction Steps: 1. Set the typescript version to the vs code's version (using select typescript version - "Cmd + Shift + P > Select Typescript Version") 2. Reload the window...

Hi I love the idea of your plugin. I'm trying to get it to work in my monorepo, which uses Nx.dev. Here's how you can get a repo locally to...

Make `tsc --project ./tsconfig.json` show fails (if your plugin is added) without the need to use "yarn tsc-strics". Having separate CLI to show errors for strict files creates many problems....

awaiting reply

I'm setting up build-time linting for a project (ie. tsc && tsc-strict) and noticed that ts-expect-error will always fail linting if the expected error is due to strict typing because...

enhancement

I'd like to run this as a pre-commit hook and only check staged files so I can 1) Make sure no regressions are checked in 2) Check that new files...

enhancement

Running this on a project that has allowJs on in the tsconfig json and has js files appears to trigger this error. I turned off allowJs and it seems to...

awaiting reply

We need to run our typescript transpilation process with `NODE_OPTIONS='--max-old-space-size=8192'`. Subsequently running the typecheck has the following issue: ``` max@host master ~/code$ npx tsc-strict Project does not contain any strict...

Just a small README update: AFAIK you can only invoke an npm package script directly if it's run via a defined npm script or `node_modules/.bin` has been added to your...

## Description We've been looking at adopting this plugin in our very large project and noticed that switching between files which are marked as strict and files which are not...

Great plugin for partial strict mode refactoring. But I want to exclude files like `*.spec.ts` (unit test). **tsconfig.json** (my current config) ```json { "strict": false, "plugins": [ { "name": "typescript-strict-plugin",...