You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 27, 2019. It is now read-only.
but always got problems with bootstrap fonts. tried to add them too, but that also gave me errors. Also tried:
...
import 'jquery'
import 'bootstrap';
...
and that didn't gave me errors, except for that the page didn't showed up anything. Then I noticed the problem was with import 'bootstrap';, after removing that line of code, the project started.
Then tried to use jQuery in a Component, but that gave me errors too. After reading this and this I noticed I had to typings install dt~jquery --global --save, in order to reference jQuery in any file with declare var $: JQueryStatic;, but whenever I try to do anything with jQuery, the project just doesn't work.
how can I include these libraries in my project?
thanks in advance for any help you can offer.
The text was updated successfully, but these errors were encountered:
Hello,
Probably this is a noob question, but i've been trying to include jQuery and twitter bootstrap 3 to a project configured like this:
I've previously installed jQuery and bootstrap with
npm install jquery bootstrap --save
and tried to include them in/src/index.ts
but always got problems with bootstrap fonts. tried to add them too, but that also gave me errors. Also tried:
and that didn't gave me errors, except for that the page didn't showed up anything. Then I noticed the problem was with
import 'bootstrap';
, after removing that line of code, the project started.Then tried to use jQuery in a Component, but that gave me errors too. After reading this and this I noticed I had to
typings install dt~jquery --global --save
, in order to reference jQuery in any file withdeclare var $: JQueryStatic;
, but whenever I try to do anything with jQuery, the project just doesn't work.how can I include these libraries in my project?
thanks in advance for any help you can offer.
The text was updated successfully, but these errors were encountered: