1.1.16 • Published 4 years ago

rollup-plugin-tsc v1.1.16

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

rollup-plugin-tsc

A small Rollup plugin for transpiling Typescript.

Installation

npm install --save-dev rollup-plugin-tsc

Usage

// rollup.config.js
import tsc from "rollup-plugin-tsc";

export default {
	input: "src/main.ts",

	plugins: [
		tsc({
			// put your tsconfig here
		}),
	]
};

The plugin simply transpiles Typescript into Javascript. To configure the Typescript compiler, the tsconfig has to be passed to the plugin. There is no need to hold a separate tsconfig.json file in the project.

1.1.16

4 years ago

1.1.15

5 years ago

1.1.14

5 years ago

1.1.13

6 years ago

1.1.12

6 years ago

1.1.11

6 years ago

1.1.10

6 years ago

1.1.9

6 years ago

1.1.8

6 years ago

1.1.7

6 years ago

1.1.6

6 years ago

1.1.5

7 years ago

1.1.4

7 years ago

1.1.3

7 years ago

1.1.2

7 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago