New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

tsc-esm

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsc-esm

Fixes the file extensions in TypeScript files so they may be loaded as ES modules

latest
npmnpm
Version
1.0.4
Version published
Maintainers
1
Created
Source

tsc-esm

Fixes the file extensions in TypeScript files so they may be loaded as ES modules.

⚠️ string literals may be affected by this ️️⚠️

ES Modules require imports to contain the file extension.

Currently, TypeScript doesn't add the file extensions for you. (issue) 🤞

Although, they could be added in the TS file this makes using the non-module (nodejs / mocha testing) difficult.

This simple program allows you to continue writing your TS files without the extension and will append .js to all your local imports.

Example

This:

import Default from "no-change";
import { func } from "./local/function";
// ...

Turns into:

 *  import Default from "no-change";
 *  import { func } from "./local/function.js";
// ...

Install

$ npm i -D tsc-esm

How to use

After you have compiled your TypeScript run it through this CLI.

$ tsc && tsc-esm index.js dist/*.js

TODO

  • Do not add extension if it already exists

FAQs

Package last updated on 22 Oct 2019

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