Removing all eval warnings from rollup.
This commit is contained in:
parent
cd694cb312
commit
936762c8ee
|
@ -17,6 +17,12 @@ const config = (format, outputFile) => ({
|
|||
format,
|
||||
file: outputFile,
|
||||
},
|
||||
onwarn(warning, warn) {
|
||||
if (warning.code === "EVAL") {
|
||||
return
|
||||
}
|
||||
warn(warning)
|
||||
},
|
||||
plugins: [
|
||||
typescript(),
|
||||
resolve({
|
||||
|
|
Loading…
Reference in New Issue