This package has been deprecated

Author message:

TypeScript 5.0 supports combining TSConfigs using array syntax in extends

@tsconfig/node-lts-strictest-esm

18.12.1 • Public • Published

A base TSConfig for working with Node LTS + ESM + Strictest.

Add the package to your "devDependencies":

npm install --save-dev @tsconfig/node-lts-strictest-esm
yarn add --dev @tsconfig/node-lts-strictest-esm

Add to your tsconfig.json:

"extends": "@tsconfig/node-lts-strictest-esm/tsconfig.json"

The tsconfig.json:

// This file was autogenerated by a script
// Equivalent to a config of: strictest extends esm extends node18
{
  "$schema": "https://json.schemastore.org/tsconfig",
  "display": "Node LTS + ESM + Strictest",
  "_version": "18.12.1",
  "compilerOptions": {
    "lib": [
      "es2022"
    ],
    "module": "es2022",
    "target": "es2022",
    "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/node-lts-strictest-esm

Weekly Downloads

13,095

Version

18.12.1

License

MIT

Unpacked Size

3.74 kB

Total Files

4

Last publish

Collaborators

  • orta
  • typescript-deploys