GithubHelp home page GithubHelp logo

jkonowitch / vite-plugin-typescript-transpile Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 10 KB

Use the official TypeScript library to transpile TypeScript files in Vite projects, via a plugin.

TypeScript 100.00%
decorators es6-decorators typescript vite vite-plugin

vite-plugin-typescript-transpile's Introduction

vite-plugin-typescript-transpile

Use the official TypeScript library to transpile TypeScript files in Vite projects. This Vite plugin allows developers to leverage the most up-to-date features of TypeScript, including those not fully supported by other transpilers, like the ES6 decorators proposal (currently in Stage 3) which has been implemented in Typescript 5.

Why Use vite-plugin-typescript-transpile?

Vite, by default, uses ESbuild for transpilation, which is incredibly fast but does not support the latest TypeScript features such as ES6 decorators. Other tools like SWC and Babel either do not implement these features or have incomplete implementations. This plugin provides a way to use the TypeScript's own transpiler for projects new Typescript features are needed, ensuring full compatibility and support. Though I have not benchmarked it, the transpileModule API is quite fast as it does not do typechecking - it seems very similar to ESBuild.

Prerequisites

Users must enable isolatedModules in their tsconfig.json file to ensure compatibility. You must also set moduleResolution to "bundler".

Installation

Install the plugin with your package manager of choice:

npm install vite-plugin-typescript-transpile

Usage

To use this plugin, import it and include it in the plugins array of your Vite configuration.

import { defineConfig } from 'vite';
import { vitePluginTypescriptTranspile } from 'vite-plugin-typescript-transpile';

export default defineConfig({
  plugins: [vitePluginTypescriptTranspile({})]
});

The plugin function accepts an options object where you can specify:

  • fileRegex: A regular expression to match files that should be transpiled. Defaults to /\.ts$/.
  • cwd: The current working directory. Defaults to process.cwd().

Contributing

Contributions are welcome! Please submit any issues or pull requests on GitHub.

License

This project is licensed under the MIT License - see the LICENSE file for details.

vite-plugin-typescript-transpile's People

Contributors

jkonowitch avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.