Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
https://monday.monday.com/boards/3532714909/pulses/6677817632
experimentalDecorators
option is not neededexperimentalDecorators
option, soemitDecoratorMetadata
option is not neededimport React from react
, is that we usedjsx
withreact-jsx
instead ofreact
.react-jsx
is intended for React 17+, and it make sure you do not import React if you do not use it. We’re using 16+, so we needreact
, notreact-jsx
.react/react-in-jsx-scope
toerror
, at the first place it is a mistake to have it disabled, as we use a React version which requires it.tsconfig.json
refers to the modern way we do stuff - esm, and cjs is handled in a different file, instead of the opposite (sotsconfig.esm.json
is nowtsconfig.json
, and the module config on oldtsconfig.json
that pointed toCommonJS
is now attsconfig.cjs.json
)tsconfig.base.json
that both inherit from.tsconfig.json
in the root now includes only lib related config, andtsconfig.json
in.storybook
now includes only storybook related config