You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

@tsconfig/node16

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tsconfig/node16

A base TSConfig for working with Node 16.


Version published
Weekly downloads
17M
increased by0.92%
Maintainers
2
Install size
2.30 kB
Created
Weekly downloads
 

Package description

What is @tsconfig/node16?

The @tsconfig/node16 npm package provides a set of TypeScript configuration presets specifically tailored for Node.js 16. This package helps developers to quickly set up a TypeScript project that is compatible with Node.js 16 features and runtime behavior, ensuring that TypeScript code is compiled with the appropriate settings for this version of Node.js.

What are @tsconfig/node16's main functionalities?

Pre-configured TypeScript settings for Node.js 16

This feature allows developers to extend their TypeScript configuration with a preset that is optimized for Node.js 16. By doing so, it automatically configures TypeScript compiler options such as `module`, `target`, and others to values that are compatible with Node.js 16, simplifying project setup.

{
  "extends": "@tsconfig/node16/tsconfig.json",
  "compilerOptions": {
    "outDir": "./dist",
    "rootDir": "./src"
  }
}

Other packages similar to @tsconfig/node16

Readme

Source

A base TSConfig for working with Node 16.

Add the package to your "devDependencies":

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

Add to your tsconfig.json:

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

The tsconfig.json:

{
  "$schema": "https://json.schemastore.org/tsconfig",
  "_version": "16.1.0",

  "compilerOptions": {
    "lib": ["es2021"],
    "module": "node16",
    "target": "es2021",

    "strict": true,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "moduleResolution": "node16"
  }
}

You can find the code here.

Keywords

FAQs

Package last updated on 27 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc