Hi,
Thanks for the great product.
The recent release, I get the error below. I also set allowSyntheticDefaultImports: true in tsconfig.json.
To reproduce:
ng new ws --create-application=true --routing=false --style=scss;
cd ws;
npm install blockly;
ng g c test
sed -i "2i import Blockly from 'blockly';" src/app/test/test.component.ts
ng serve
node_modules/blockly/blocks.d.ts:14:26 - error TS2497: This module can only be referenced with ECMAScript imports/exports by turning on the 'allowSyntheticDefaultImports' flag and referencing its default export.
import * as Blockly from './core';