temberature / blog

http://temberature.github.io/blog
2 stars 5 forks source link

rollup #107

Open temberature opened 5 years ago

temberature commented 5 years ago
// rollup.config.js
import typescript from 'rollup-plugin-typescript';

export default {
  input: './src/main.ts',
  output: {
    file: 'bundle.js',
    format: 'cjs'
  },
  plugins: [
    typescript()
  ]
}
temberature commented 5 years ago

ts 能包含js js 能包含ts