
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
esm-loader-typescript
Advanced tools
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.
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'
NODE_OPTIONS="--loader esm-loader-typescript" node index.ts
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_OPTIONS="--loader node-esm-loader" node index.ts
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.
// .loaderrc.js
export default {
loaders: [
{
loader: 'esm-loader-typescript',
options: {
debug: true,
},
},
],
}
FAQs
Chainable ESModule Loader for Typescript
The npm package esm-loader-typescript receives a total of 2,103 weekly downloads. As such, esm-loader-typescript popularity was classified as popular.
We found that esm-loader-typescript demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.