This package has been deprecated

Author message:

TypeScript 5.0 supports combining TSConfigs using array syntax in extends

@tsconfig/node16-strictest

1.0.4 • Public • Published

A base TSConfig for working with Node 16 + Strictest.

Add the package to your "devDependencies":

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

Add to your tsconfig.json:

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

The tsconfig.json:

// This file was autogenerated by a script
// Equivalent to a config of: strictest extends node16
{
  "$schema": "https://json.schemastore.org/tsconfig",
  "display": "Node 16 + Strictest",
  "compilerOptions": {
    "lib": [
      "es2021"
    ],
    "module": "commonjs",
    "target": "es2021",
    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "moduleResolution": "node",
    "allowUnusedLabels": false,
    "allowUnreachableCode": false,
    "exactOptionalPropertyTypes": true,
    "noFallthroughCasesInSwitch": true,
    "noImplicitOverride": true,
    "noImplicitReturns": true,
    "noPropertyAccessFromIndexSignature": true,
    "noUncheckedIndexedAccess": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "importsNotUsedAsValues": "error",
    "checkJs": true
  }
}

You can find the code here.

Package Sidebar

Install

npm i @tsconfig/node16-strictest

Weekly Downloads

4,218

Version

1.0.4

License

MIT

Unpacked Size

3.6 kB

Total Files

4

Last publish

Collaborators

  • orta
  • typescript-deploys