mirror of
https://github.com/marcogll/builderbot-openai-assistants.git
synced 2026-01-13 13:25:18 +00:00
first
This commit is contained in:
13
rollup.config.js
Normal file
13
rollup.config.js
Normal file
@@ -0,0 +1,13 @@
|
||||
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()],
|
||||
}
|
||||
Reference in New Issue
Block a user