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
WARNING in my-project depends on 'js-big-decimal'. CommonJS or AMD dependencies can cause optimization bailouts. For more info see: https://angular.io/guide/build#configuring-commonjs-dependencies
The text was updated successfully, but these errors were encountered:
This might breaking change introduced by angular, but I can still get it to work on CodeSandbox with the following code:
import { Component } from "@angular/core";
import * as Big from "js-big-decimal";
@Component({
selector: "app-root",
templateUrl: "./app.component.html",
styleUrls: ["./app.component.css"]
})
export class AppComponent {
title = "CodeSandbox";
constructor(){
let b = new Big(38);
console.log(b);
}
}
After upgrade my project to Angular 10.
The text was updated successfully, but these errors were encountered: