bguezzie
bguezzie
This is happening for me, as well. Originally I was on Less 4.x but even after switching to ^3.9.0 I see the same behavior. "@angular-devkit/build-angular": "^14.2.6", "ng-zorro-antd": "^14.1.1", "less": "^3.9.0",...
For what it's worth, I have isolated the error as arising from the import statement itself (a simple console log statement afterward never gets executed).
Here's the associated stack trace (sorry I forgot it earlier): at Object.Module._extensions..node (node:internal/modules/cjs/loader:1203:18) at Module.load (node:internal/modules/cjs/loader:997:32) at Function.Module._load (node:internal/modules/cjs/loader:838:12) at Module.require (node:internal/modules/cjs/loader:1021:19) at require (node:internal/modules/cjs/helpers:103:18) at Object. (//node_modules/mdns/lib/dns_sd.js:24:20) at Module._compile...
In case it helps, here's what the TS compiles to: ```"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : {...
Another interesting data point: Our project had been importing the module in the main thread (creating an Advertisement) as well as in the worker thread. When I comment out the...