1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12: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,
file: outputFile,
},
onwarn(warning, warn) {
if (warning.code === "EVAL") {
return
}
warn(warning)
},
plugins: [
typescript(),
resolve({