mirror of
https://github.com/marcogll/builderbot-openai-assistants.git
synced 2026-01-13 21:35:19 +00:00
14 lines
289 B
JavaScript
14 lines
289 B
JavaScript
import typescript from 'rollup-plugin-typescript2'
|
|
|
|
export default {
|
|
input: 'src/app.ts',
|
|
output: {
|
|
file: 'dist/app.js',
|
|
format: 'esm',
|
|
},
|
|
onwarn: (warning) => {
|
|
if (warning.code === 'UNRESOLVED_IMPORT') return
|
|
},
|
|
plugins: [typescript()],
|
|
}
|