@tsconfig/node-ts

23.6.1 • Public • Published

A base TSConfig for working with Node with TypeScript (TS >=5.8 ONLY).

Add the package to your "devDependencies":

npm install --save-dev @tsconfig/node-ts
yarn add --dev @tsconfig/node-ts

Add to your tsconfig.json:

"extends": "@tsconfig/node-ts/tsconfig.json"

This base require TypeScript 5.8+ (See announcement)

This file is meant to be used in conjunction with other Node.js configurations, you can do so by extending multiple files in the extends clause of your tsconfig.json:

{
  "extends": ["@tsconfig/node22/tsconfig.json", "@tsconfig/node-ts/tsconfig.json"]
}

The tsconfig.json:

{
  "$schema": "https://json.schemastore.org/tsconfig",
  "docs": [
    "https://devblogs.microsoft.com/typescript/announcing-typescript-5-7/#path-rewriting-for-relative-paths",
    "https://devblogs.microsoft.com/typescript/announcing-typescript-5-8-beta/#the---erasablesyntaxonly-option"
  ],
  "_version": "23.6.0",
  "compilerOptions": {
    "rewriteRelativeImportExtensions": true,
    "erasableSyntaxOnly": true,
    "verbatimModuleSyntax": true
  }
}

You can find the code here.

Dependents (1)

Package Sidebar

Install

npm i @tsconfig/node-ts

Weekly Downloads

2,655

Version

23.6.1

License

MIT

Unpacked Size

3.2 kB

Total Files

4

Last publish

Collaborators

  • orta
  • typescript-deploys