Skip to content

CRA2 doesn't work with reflect-metadata package #6388

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
elderapo opened this issue Feb 10, 2019 · 20 comments
Open

CRA2 doesn't work with reflect-metadata package #6388

elderapo opened this issue Feb 10, 2019 · 20 comments

Comments

@elderapo
Copy link

Is this a bug report?

Yes

Did you try recovering your dependencies?

No

Which terms did you search for in User Guide?

None

Environment

Environment Info:

  System:
    OS: Linux 4.4 Ubuntu 14.04.5 LTS, Trusty Tahr
    CPU: x64 Intel(R) Core(TM) i5-6600K CPU @ 3.50GHz
  Binaries:
    Node: 9.11.2 - /usr/local/bin/node
    Yarn: 1.6.0 - ~/.yarn/bin/yarn
    npm: 5.6.0 - ~/.npm-global/bin/npm
  Browsers:
    Chrome: 71.0.3578.98
    Firefox: 64.0
  npmPackages:
    @types/react: ^16.8.2 => 16.8.2 
    @types/react-dom: ^16.8.0 => 16.8.0 
    react: ^16.8.1 => 16.8.1 
    react-dom: ^16.8.1 => 16.8.1 
    react-scripts: 2.1.3 => 2.1.3 
  npmGlobalPackages:
    create-react-app: 1.5.2

Steps to Reproduce

Just follow the steps from the Reproducible Demo part and open console in browser.

Expected Behavior

Browsers console should print someProperty type: Number.

Actual Behavior

It prints couldn't get the type :(.

Reproducible Demo

git clone git@github.com:elderapo/cra2-reflect-metadata-bug.git
cd cra2-reflect-metadata-bug
yarn
yarn start

The problem

I think the problem is that babel completely strips out TS types before compilation process which makes it impossible for reflect-metadata package to do its work.

@stale
Copy link

stale bot commented Mar 12, 2019

This issue has been automatically marked as stale because it has not had any recent activity. It will be closed in 5 days if no further activity occurs.

@stale stale bot added the stale label Mar 12, 2019
@elderapo
Copy link
Author

Are there any plans regarding this issue?

I understand that there might not be an easy fix becuase of how babel compiles typescript. However, there are few nice libraries (ex. InversifyJS) that heavily rely on reflect-metadata package and the fact that cra-2 is not complatible is really discouraging.

@stale stale bot removed the stale label Mar 13, 2019
@iansu
Copy link
Contributor

iansu commented Mar 14, 2019

I think this would need to be addressed in Babel. Can you find or create an issue there and link to it here?

@elderapo
Copy link
Author

@iansu, here you go babel/babel#9681.

@magneticflux-
Copy link

Any likelihood of getting babel-plugin-transform-typescript-metadata added? It seems like a sensible default if Typescript is used anywhere, since a lot of libraries use the type metadata.

@iansu
Copy link
Contributor

iansu commented Apr 14, 2019

That might be possible. It depends how mature that plugin is and what kind of impact it has on build performance. cc @ianschmitz @mrmckeb

@ianschmitz
Copy link
Contributor

Can anyone confirm the stability of the metadata proposal? What stage is it in? Last time I checked I seem to remember it not having been proposed yet as they were waiting for decorators to be later stage?

We typically don't support early stage proposals in CRA as they are too volatile. For example the decorators proposal changed drastically during the first couple stages.

@xiaoxiangmoe
Copy link
Contributor

@iainbeeston can we config babel and eslint in CRA?In this way, the responsibility for maintaining the plugin of babel can be given to the user.

@Obiwarn
Copy link

Obiwarn commented Jun 26, 2020

Is there any workaround for this to get any dependency injection library to run?

@rmoedt
Copy link

rmoedt commented Jun 26, 2020

Is there any workaround for this to get any dependency injection library to run?

@Obiwarn You can use a package like https://github.com/arackaf/customize-cra, which allows you to load extra babel plugins without ejectting cra. You can then include the babel-plugin-transform-typescript-metadata plugin

@Obiwarn
Copy link

Obiwarn commented Jun 26, 2020

@rmoedt I installed both and tried

const { override, addExternalBabelPlugin } = require("customize-cra");


module.exports = override(
  addExternalBabelPlugin("babel-plugin-transform-typescript-metadata")
);

But tsyringe still throws Error: TypeInfo not known

@kmannislands
Copy link

@rmoedt I installed both and tried

const { override, addExternalBabelPlugin } = require("customize-cra");


module.exports = override(
  addExternalBabelPlugin("babel-plugin-transform-typescript-metadata")
);

But tsyringe still throws Error: TypeInfo not known

@Obiwarn I was running into the same issue with CRA x TSyringe. I didn't try customize-cra but craco did it for me. See microsoft/tsyringe#29 (comment)

// craco.config.js
module.exports = function ({ env: _env }) {
    return {
        babel: {
            plugins: [
                "babel-plugin-transform-typescript-metadata"
            ]
        },
    };
};

@Obiwarn
Copy link

Obiwarn commented Jul 3, 2020

@kmannislands Thank you. I tried it but now, in the classes I use mobx-decorators I get:

TypeError: Reflect.metadata is not a function

@elderapo
Copy link
Author

elderapo commented Jul 3, 2020

@Obiwarn You need to install and import reflect-metadata package.

@Obiwarn
Copy link

Obiwarn commented Jul 3, 2020

@elderapo argh....forgot the import. Thank you!

Now it works!

@pabloordonez
Copy link

Now with CRA 4.0 craco breaks, and I don't know if they gonna fix that, after all craco is a big hack, and not a real fix for the main issue that we can't configure babel, or extract metadata, and exporting metadata is a must now days. We have a dependency library that we use in our projects with a useDependency hook, and we need this feature. We can't upgrade to CRA 4.0 because that breaks craco, but the old CRA is old, and throws random linter errors when working with complex generic cases. Is there any possibility at all to fix this inside CRA without the need of a hack?

@ogxd
Copy link

ogxd commented Jul 4, 2021

I installed craco today and used the configuration from @kmannislands and it worked ❤️

@JMLX42
Copy link

JMLX42 commented Nov 1, 2021

I installed craco today and used the configuration from @kmannislands and it worked heart

It worked but I had to add import 'reflect-metadata' in the very file where I'm using the @Type decorator.

Is there anyway to import it just once in intex.tsx and be done with it?

@jbrighton-dev
Copy link

jbrighton-dev commented Dec 22, 2021

Does anyone know how to handle the issue with transpilation of es6 syntax with babel? When I try to use tsyringe with craco, I run into the problem when using autoinjection
"TypeError: Class constructor x cannot be invoked without 'new'"

@thongxuan
Copy link

Does anyone know how to handle the issue with transpilation of es6 syntax with babel? When I try to use tsyringe with craco, I run into the problem when using autoinjection "TypeError: Class constructor x cannot be invoked without 'new'"

edit tsconfig.json, change "target" value from "es5" to "es6" or more

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests