Artem Berezin

Results 16 comments of Artem Berezin

CSS Modules feature needs for additional .d.ts with ``` declare module '*.module.css' { const styles: any; export default styles; } ```

I have also remembered: feature for importing SVG as React.Component doesn't work.

@dosentmatter I am using `react-scripts-ts ^4.0.8` and it is quite stable (with CRA 2 support). I like strict tslint/tsconfig rules in react-scripts-ts.

4.0.8 built on CRA2. It supports CSS Modules (with some additiaonal type definition), uses webpack 4 and so on. react-scripts-ts has tslint, built in dev-server. It is very cool. It...

It's available in Js to use constructors without brackets (for constructors without arguments); You can use ```javascript class A { constructor() { .... } } const a = new A;...

Click on text (letters) doesn't fire click event. Click on space before/after text in item fires event (and calls `selectMatch`)

May be the right way is ```typescript declare const memoize : ( limit?: number, ... ``` or even ```typescript export default function memoize( limit?: number, equals?: (a: any, b: any)...

until the PR accepted `patch-package` helps me with this patch ```patch diff --git a/node_modules/js-yaml/dist/js-yaml.mjs b/node_modules/js-yaml/dist/js-yaml.mjs index be71cad..77a71f2 100644 --- a/node_modules/js-yaml/dist/js-yaml.mjs +++ b/node_modules/js-yaml/dist/js-yaml.mjs @@ -3017,7 +3017,8 @@ function isPrintable(c) { return...

> Are there no workarounds so far? I have used the https://www.npmjs.com/package/patch-package for patched the code directly (write my own host). It's seems stupid, but works)