1.2.1 • Published 1 year ago

@type-config/strict v1.2.1

Weekly downloads
1
License
MIT
Repository
github
Last release
1 year ago

@type-config/strict

The most strict typescript compiler options, check everthing typescript can check. Useful for packages.

rules

{
  "compilerOptions": {
    "module": "commonjs",
    "target": "es6",
    "noEmitOnError": true,

    "declaration": true,
    "sourceMap": true,

    "moduleResolution": "node",
    "esModuleInterop": true,
    "forceConsistentCasingInFileNames": true,

    "strict": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitReturns": true,
    "noUnusedParameters": true,
    "noUnusedLocals": true
  }
}