Package Exports
- rollup-plugin-typescript
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (rollup-plugin-typescript) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
rollup-plugin-typescript
Seamless integration between Rollup and Typescript.
Why?
See rollup-plugin-babel.
Installation
npm install --save-dev rollup-plugin-typescript
Usage
// rollup.config.js
import typescript from 'rollup-plugin-typescript';
export default {
entry: './main.ts',
plugins: [
typescript()
]
}
All options are as per the Typescript's Compiler Options, except options.include
and options.exclude
(each a minimatch pattern, or array of minimatch patterns), which determine which files are transpiled by Typescript (all .ts
and .tsx
files by default).
JSX
JSX can be enabled by setting the jsx
option to one of 'none'
, 'preserve'
and 'react'
.
// rollup.config.js
import typescript from 'rollup-plugin-typescript';
export default {
entry: './main.tsx',
plugins: [
typescript({
jsx: 'react'
})
]
}
TypeScript version
rollup-plugin-typescript uses TypeScript 1.8.9 per default. Should your project require it, you can override the TypeScript version used for transpiling the sources.
typescript({
typescript: require('some-fork-of-typescript')
})
Issues
Emit-less types, see #28.
License
MIT