This commit is contained in:
Leifer Mendez
2024-04-24 18:59:05 +02:00
commit c5f48307c2
15 changed files with 3504 additions and 0 deletions

13
rollup.config.js Normal file
View 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()],
}