Files
Valentin Romero 25d4ba6cc0 add bot wsp
2026-06-30 22:04:56 -03:00

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()],
}