@tsconfig/strictest

A base TSConfig for working with Strictest.

Usage no npm install needed!

<script type="module">
  import tsconfigStrictest from 'https://cdn.skypack.dev/@tsconfig/strictest';
</script>

README

A base TSConfig for working with Strictest.

Add the package to your "devDependencies":

npm install --save-dev @tsconfig/strictest
yarn add --dev @tsconfig/strictest

Add to your tsconfig.json:

"extends": "@tsconfig/strictest/tsconfig.json"

The tsconfig.json:

{
  "compilerOptions": {
    "alwaysStrict": true,

    "strict": true,
    "allowUnusedLabels": false,
    "allowUnreachableCode": false,
    "exactOptionalPropertyTypes": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitOverride": true,
    "noImplicitReturns": true,
    "noPropertyAccessFromIndexSignature": true,
    "noUncheckedIndexedAccess": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,

    "importsNotUsedAsValues": "error",
    "checkJs": true,

    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true
  },
  "$schema": "https://json.schemastore.org/tsconfig",
  "display": "Strictest"
}

You can find the code here.