Socket
Socket
Sign inDemoInstall

esbuild-plugin-ts-references

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    esbuild-plugin-ts-references

esbuild plugin for typescript references


Version published
Weekly downloads
678
decreased by-1.02%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

esbuild-plugin-ts-references

esbuild plugin for Typescript references.

Rationale

A common approach for monorepos is yarn/npm/pnpm workspaces + typescript references.

While it works in VSCode and using tsc --build, esbuild doesn't resolve such references automatically. The feature request to add support for it was closed as it is not in the scope of the bundler and creation of a plugin was suggested.

This is the plugin.

Installation

npm install --save-dev esbuild-plugin-ts-references

Usage

Define plugin in the plugins section of esbuild config like this:

const esbuild = require('esbuild');
const tsReferences = require('esbuild-plugin-ts-references');

esbuild.build({
  // ...
  plugins: [tsReferences]
});

Implementation details

Currently the algorithm to resolve the references is very simple (but it works for me):

  • Find the closest tsconfig.json to the build target
  • Resolve package.json and tsconfig.json of references
  • Map package name from package.json to rootDir from tsconfig.json
  • Profit!

Keywords

FAQs

Last updated on 13 May 2022

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc