Content-Security-Policy violated in jquery.min.js and SessionExpire.js

I am implementing CSP in my application and the browser says CSP has been violated in the following:

1. jquery.min.js: Inline style violation in the following line

t.insertBefore(e, t.firstChild)

2. SessionExpire.js: Eval violation in the following line

setInterval(“fnSessionRun()”, 1000);

How can CSP be implemented properly without adding “unsafe-inline” and “unsafe-eval”?