npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

babel-plugin-typescript-const-enum

v1.0.8

Published

A babel plugin to replace typescript const enum expression as TS does.

Downloads

6

Readme

babel-plugin-typescript-const-enum

https://www.npmjs.com/package/babel-plugin-typescript-const-enum

Description

This plugin is to resolve typescript const enum declaration to hard code.

Example

some.d.ts

declare namespace N.S {
  export const enum STATUS {
    success = 0,
    fail = 1,
  }
}

declare const enum OUT_NS_STATUS {
  success = 0,
  fail = 1,
}

index.ts

import NS2 = NS;
import NS = N.S;
import ONS = OUT_NS_STATUS;

export function foo() {
  const a = N.S.STATUS.fail;  // => 1
  const b = NS.STATUS.success;  // => 0
  const c = NS2.STATUS.fail;  // => 1
  const d = ONS.success;  // => 0
  function baz1() {
    const NS = { STATUS: { success: 'success', fail: 'fail' } };
    return NS.STATUS.success; // keep
  }
  function baz2() {
    const ONS = { success: 'success', fail: 'fail' };
    return ONS.success; // keep
  }
  function baz3() {
    const N = { S: { STATUS: { success: 'success', fail: 'fail' } } };
    function bas3Closure() {
      return N.S.STATUS.fail; // keep
    }
    return bas3Closure();
  }
  function haha() {
    return function () {
      return NS.STATUS.success; // => 0
    };
  }
  return;
}

How to Use

Add plugin in babel config

babel.config.json

{
  ...
  "plugins": [
    [
      "babel-plugin-typescript-const-enum",
      {
        "enumFile": "./my-const-enum.json",
        "enums": {
          "a.b.c.xxx": "xxx"
        }
      }
    ]
  ]
  ...
}

Options

  • enumFile string

    a pathname to the enums json data

  • enums

    an object of enums map like follows:

    {
      "my.namespace.student.grade.LEVEL_ENUM.one": "一年级",
      "my.namespace.student.grade.LEVEL_ENUM.two": "二年级",
      "my.namespace.student.grade.LEVEL_ENUM.three": "三年级",
      "real.world.common.sense.DAY.SUNDAY": 7,
      "real.world.common.sense.DAY.MONDAY": 1,
      "real.world.common.sense.DAY.TUSEDAY": 2,
    }

    the upon json may be from some idl, and there should be some d.ts file as following to ensure TS Language Server works OK:

    declare namespace my.namespace.student {
      export namespace grade {
        export const enum LEVEL_ENUM {
          one = '一年级',
          two = '二年级',
          three = '三年级'
        }
      }
    }
    
    declare namespace real.world.common.sense {
      export const enum DAY {
        SUNDAY = 7,
        MONDAY = 1,
        TUSEDAY = 2
      }
    }