You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current implementation of --no-check does not support some features which are supportable without the flag. The related TypeScript compiler options are:
emitDecoratorMetadata - If experimentalDecorators is true and this is true then meta data is emitted.
experimentalDecorators - Isn't set to true by default, but can be set using a tsconfig.json.
jsx - By default we use "react" setting. Current behaviour is effectively the default of "preserve".
jsxFactory - This feature is supported using a tsconfig.json.
jsxFragmentFactory - This feature is supported using a tsconfig.json.
Currently we support reactNamespace but it should be ignored. It is deprecated and redundant with the jsxFactory and jsxFragmentFactory options.
The current implementation of
--no-check
does not support some features which are supportable without the flag. The related TypeScript compiler options are:emitDecoratorMetadata
- IfexperimentalDecorators
istrue
and this istrue
then meta data is emitted.experimentalDecorators
- Isn't set totrue
by default, but can be set using atsconfig.json
.jsx
- By default we use"react"
setting. Current behaviour is effectively the default of"preserve"
.jsxFactory
- This feature is supported using atsconfig.json
.jsxFragmentFactory
- This feature is supported using atsconfig.json
.Currently we support
reactNamespace
but it should be ignored. It is deprecated and redundant with thejsxFactory
andjsxFragmentFactory
options.cc/ @bartlomieju
The text was updated successfully, but these errors were encountered: