I am referencing Howler in my index.html file:
<script src="https://cdnjs.cloudflare.com/ajax/libs/howler/2.0.3/howler.min.js"></script>
Then in my app.component.ts
I have the line:
let sound = new Howl({src: [sample]});
This produces the error:
error TS2304: Cannot find name 'Howl'.
I tried including it in the lib
array in tsconfig.json
but that is not permitted.