I am trying to build an application using FDK which will be used internally. The app is being built on a frontend framework (svelte.js) which is eventually transpiled to JavaScript.
The `fdk pack` command throws the following errors
```
[error] app/bundle.js::1: Unexpected empty function 'e'.
[error] app/bundle.js::1: Unexpected empty method '$set'.
[error] app/bundle.js::1: 'n' is defined but never used.
[error] app/bundle.js::1: 'e' is defined but never used.
[error] app/bundle.js::1: 'e' is defined but never used.
which these should have been warnings in the first place as none are critical but also not feasible to go in the applications build process to remove these.
FDK version : 5.0.7
Framework used: svelte.js
Is there a way to turn this off or disable the error checking process?