Removing all eval warnings from rollup.

This commit is contained in:
mike12345567 2024-03-27 13:35:47 +00:00
parent cd694cb312
commit 936762c8ee
1 changed files with 6 additions and 0 deletions

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({