1.1.16 • Published 5 years ago

rollup-plugin-tsc v1.1.16

Weekly downloads
2
License
MIT
Repository
github
Last release
5 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

5 years ago

1.1.15

7 years ago

1.1.14

7 years ago

1.1.13

7 years ago

1.1.12

7 years ago

1.1.11

7 years ago

1.1.10

7 years ago

1.1.9

7 years ago

1.1.8

7 years ago

1.1.7

7 years ago

1.1.6

7 years ago

1.1.5

8 years ago

1.1.4

8 years ago

1.1.3

8 years ago

1.1.2

8 years ago

1.1.1

8 years ago

1.1.0

8 years ago

1.0.5

8 years ago

1.0.4

8 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago