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 current aurelia-breeze.d.ts file has this as the first line:
import breeze from 'breeze-client';
This gives me the error:
ERROR in C:\my\path\my-project\node_modules\aurelia-breeze\dist\aurelia-breeze.d.ts
(1,8): error TS1192: Module '"C:/my/path/my-project/node_modules/breeze-client/index"' has no default export.
If I change the first line to this:
import * as breeze from 'breeze-client';
Then it works fine.
Please consider changing this in the source.
The text was updated successfully, but these errors were encountered:
The current aurelia-breeze.d.ts file has this as the first line:
import breeze from 'breeze-client';
This gives me the error:
If I change the first line to this:
import * as breeze from 'breeze-client';
Then it works fine.
Please consider changing this in the source.
The text was updated successfully, but these errors were encountered: