mirror of https://github.com/aldy505/sql-dsl.git
19 lines
262 B
JavaScript
19 lines
262 B
JavaScript
|
import ts from 'rollup-plugin-typescript2';
|
||
|
|
||
|
export default {
|
||
|
input: 'src/index.ts',
|
||
|
output: [
|
||
|
{
|
||
|
file: 'dist/index.cjs',
|
||
|
format: 'cjs',
|
||
|
},
|
||
|
{
|
||
|
file: 'dist/index.js',
|
||
|
format: 'esm',
|
||
|
},
|
||
|
],
|
||
|
plugins: [
|
||
|
ts(),
|
||
|
],
|
||
|
};
|