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
The allowSyntheticDefaultImports option does sound like the right fix, but note that that only works on the latest TypeScript 1.8.0 beta. Are you definitely running that beta version here?
The allowSyntheticDefaultImports option does sound like the right fix, but note that that only works on the latest TypeScript 1.8.0 beta. Are you definitely running that beta version here?
—
Reply to this email directly or view it on GitHub.
Windows 7 x64
jspm 0.16.15
gulp-typescript 2.9.2
typescript 1.7.3
I have read a few issues regarding this and I think its is a System.js problem but I am not sure.
I am trying to import jquery inside of an Aurelia project using
import $ from 'jquery';
I added jquery to typing via tsd install jquery
after running gulp-typescript I get the above error.
Here are a few articles I have read about the problem
DefinitelyTyped/DefinitelyTyped#6315
microsoft/TypeScript#5285
I have tried the flag "allowSyntheticDefaultImports" : true and false with the same result
If I import jquery using import * as $ from 'jquery'; everything works fine no errors
The text was updated successfully, but these errors were encountered: