Socket
Socket
Sign inDemoInstall

tsconfig-to-swcconfig

Package Overview
Dependencies
3
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    tsconfig-to-swcconfig

Convert tsconfig to swc config


Version published
Weekly downloads
56K
decreased by-0.2%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

tsconfig-to-swcconfig

NPM version NPM downloads

Convert tsconfig to swc config.

Why?

(https://github.com/swc-project/swc/issues/1348)

swc has no plans to support tsconfig.json, but it could be useful in some cases. For example, migrating from tsc to swc in a large project, you can use this tool to convert tsconfig.json to .swcrc, and then modify the .swcrc to make it work.

Install

npm i tsconfig-to-swcconfig

Usage

Convert config in a tsconfig file

import { convert } from 'tsconfig-to-swcconfig'

const swcConfig = convert() // will look for tsconfig under the cwd and convert it to swc config

Advanced options:

import { convert } from 'tsconfig-to-swcconfig'

convert('tsconfig-filename.json', process.cwd(), {
  // more swc config to override...
  minify: true,
})

Convert tsconfig value

Convert tsconfig value directly:

import { convertTsConfig } from 'tsconfig-to-swcconfig'

const swcConfig = convertTsConfig({
  module: 'commonjs',
  target: 'es2018',
  strict: true,
  esModuleInterop: true,
})

Advanced usage:

import { convertTsConfig } from 'tsconfig-to-swcconfig'

const swcConfig = convertTsConfig(
  { target: 'es2018' }, // tsconfig
  { minify: true }, // more swc config to override...
)

CLI

To use the CLI, install globally:

npm i -g tsconfig-to-swcconfig

Then run:

tsconfig-to-swcconfig --help
Usage: tsconfig-to-swcconfig [options]
Alias: t2s [options]

Options:
  -f, --filename <filename>  filename to tsconfig (default: "tsconfig.json")
  -c, --cwd <cwd>            cwd (default: process.cwd())
  -o, --output <output>      output file (default: stdout)
  -s, --set <name>=<value>   set additional swcrc options
  -h, --help                 display help for command

Instead of installing globally, you can also use npx to run the CLI without installing:

npx tsconfig-to-swcconfig -f tsconfig.json -c /path/to/project -o swc.config.js

License

MIT

Keywords

FAQs

Last updated on 27 Sep 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