Artemii

Results 3 comments of Artemii

> antlr4 npm module requires "fs" module, which has no equivalent in a modern browser. I fixed error caused by this in webpack config ``` module.exports = { entry: './index.js',...

@tsetsik Worked for me ``` module.exports = { entry: './index.js', output: { path: './', filename: 'your.bundle.js' }, node: { module: "empty", fs: "empty" } }; ```

@zakharenkov @micobarac if you are using `formControlName` you may use the `ngAfterViewInit` hook to access the `control` prop on `NgControl` which `FormControlName` directive inherits As I understand as the formControlName...