Socket
Socket
Sign inDemoInstall

esm-loader-typescript

Package Overview
Dependencies
116
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    esm-loader-typescript

Chainable ESModule Loader for Typescript


Version published
Weekly downloads
711
increased by30.22%
Maintainers
1
Install size
35.5 MB
Created
Weekly downloads
 

Readme

Source

esm-loader-typescript

Node.js ESModule Loader for importing and loading Typescript (.ts) files and transpiling on the fly.

Warning! Using experimental Node.js features and flags, API will likely change. This may be helpful for development and testing, but should not be used in production.

Usage

npm install --save-dev esm-loader-typescript

We want to import a .ts file with Node.js:

// index.ts
const words: string = 'hello'
console.log(words)
// 'hello'

Standalone

# node >= 20.7
cat << EOF > ./register.js
import { register } from 'node:module'
register('esm-loader-typescript', import.meta.url)
EOF
NODE_OPTIONS="--import ./register.js" node index.ts

# node < 20.7
NODE_OPTIONS="--loader esm-loader-typescript" node index.ts

Chainable

This loader can be configured, and chained with other loaders, using node-esm-loader.

npm install --save-dev node-esm-loader
// .loaderrc.js
export default {
  loaders: ['esm-loader-typescript'],
}
# node >= 20.7
NODE_OPTIONS="--import node-esm-loader/register" node index.ts

# node < 20.7
NODE_OPTIONS="--loader node-esm-loader" node index.ts
Options
Config

You may specify a custom TypeScript config filename to use:

// .loaderrc.js
export default {
  loaders: [
    {
      loader: 'esm-loader-typescript',
      options: {
        config: 'tsconfig-custom.json',
      },
    },
  ],
}

Otherwise, if a tsconfig.json file is found, it will be loaded and used.

Debug
// .loaderrc.js
export default {
  loaders: [
    {
      loader: 'esm-loader-typescript',
      options: {
        debug: true,
      },
    },
  ],
}

License

MIT

Keywords

FAQs

Last updated on 01 Nov 2023

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