@magic-works/ttypescript-browser-like-import-transformer
v4.0.0
Published
A custom transformer that can be used with ttypescript to transform ts imports to browser style imports
Downloads
31
Readme
Jump to Install, Use cases, Motivation, or Documentation of options
Intro
This typescript transformer helps you to emit a browser compatible ESModule output. In general, it does two things:
- Add a ".js" after the local import
- Transform the node style dependencies (e.g.
import React from "react"
) to- A global variable access (
const React = globalThis.React
) - A CDN (
import _ from "https://cdn.skypack.dev/[email protected]"
) - Another CDN (
import _ from "https://unpkg.com/[email protected]?module"
) - [🧪Experimental] Read import rule from Import Map
- A global variable access (
Input
import './polyfill'
import * as React from 'react'
Output
const React = _import(globalThis["React"], [], "react", "globalThis.React", false);
import "./polyfill.js";
import { _import as _import } from "https://cdn.jsdelivr.net/npm/@magic-works/[email protected]/es/runtime.min.js";
Install
Install
typescript
andttypescript
, and this transformer into your project if you don't already have them.npm install --save-dev typescript npm install --save-dev ttypescript npm install --save-dev @magic-works/ttypescript-browser-like-import-transformer
You should use ESModule like target (
es2015
,esnext
, etc) in your compiler options// tsconfig.json { "compilerOptions": { "module": "es2015", "plugins": [ { "transform": "@magic-works/ttypescript-browser-like-import-transformer", "after": true // Configs go here. } ] } }
Write some typescript with normal imports
import React from 'react'
Compile using
tspc
tspc --project tsconfig.json
Use cases
Use with classic UMD dependencies
The default config of this transformer is "UMD" mode. All bare imports will be translated to a "UMD import". (e.g. import React from "react"
becomes const React = globalThis.React
). Then add a regular script tag to load React UMD.
Use with Webpack
Here is a template repo to help you use this transformer with Webpack. In this repo, all node style import is imported in a single file and packed by Webpack. The rest of the source code never gets handled by Webpack but emitted by ts-patch (an enhanced typescript cli that allows you to specify transformer programmatically).
Use with CDN
Skypack CDN and unpkg are two CDNs that friendly to ES Module dependencies. This transformer also supports CDN import. (e.g. Before import _ from 'lodash-es'
After import _ from 'https://cdn.skypack.dev/lodash-es'
)
/* tsconfig.json */
{
"compilerOptions": {
"module": "es2015",
"plugins": [
{
"transform": "@magic-works/ttypescript-browser-like-import-transformer",
"after": true,
"rules": "skypack" // or "unpkg"
}
]
}
}
Motivation
Nowadays most of the codes in our codebase are ESModules. You can emit browser executable JS files by tsc
directly but you have to add the annoying .js
extension to the end. (Related: PR: New --emitExtension and --noImplicitExtensionName compiler options)
On the other hand, it is hard to run ES Module codes with Node style dependencies, there're some solutions to this including ESM CDN.
Options
See Options
Use programmatically
If you are using Node.js, import @magic-works/ttypescript-browser-like-import-transformer/cjs/node.js
, it will export a ts.TransformerFactory<SourceFile>
.
If you are in another environment or you want to modify the behavior of the transformer, use ./es/core.js
and provide related I/O operations to create a ts.TransformerFactory<SourceFile>
.
Once you get the ts.TransformerFactory<SourceFile>
, you can use it like
const result = ts.transpileModule(source, {
compilerOptions,
transformers: {
after: [
transformer.default(
{}, // Should be a Program but not used today.
{
after: true,
// config here
},
),
],
},
})