1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

Removing all eval warnings from rollup.

This commit is contained in:
mike12345567 2024-03-27 13:35:47 +00:00
parent cd694cb312
commit 936762c8ee

View file

@ -17,6 +17,12 @@ const config = (format, outputFile) => ({
format, format,
file: outputFile, file: outputFile,
}, },
onwarn(warning, warn) {
if (warning.code === "EVAL") {
return
}
warn(warning)
},
plugins: [ plugins: [
typescript(), typescript(),
resolve({ resolve({