Coder Social home page Coder Social logo

tgriesser / relay-compiler-language-typescript Goto Github PK

View Code? Open in Web Editor NEW

This project forked from relay-tools/relay-compiler-language-typescript

0.0 2.0 0.0 2.41 MB

A language plugin for Relay that adds TypeScript support, including emitting type definitions.

License: MIT License

TypeScript 82.19% JavaScript 10.16% CSS 6.93% HTML 0.56% Shell 0.16%

relay-compiler-language-typescript's Introduction

relay-compiler-language-typescript

Build Status

A language plugin for Relay that adds TypeScript support, including emitting type definitions.

Installation

Add the package to your dev dependencies:

yarn add graphql relay-compiler --dev
yarn add typescript relay-compiler-language-typescript --dev

Configuration

relay-compiler

Then configure your relay-compiler script to use it, like so:

{
  "scripts": {
    "relay":
      "relay-compiler --src ./src --schema data/schema.graphql --language typescript --artifactDirectory ./src/__generated__"
  }
}

This is going to store all artifacts in a single directory, which you also need to instruct babel-plugin-relay to use in your .babelrc:

{
  "plugins": [["relay", { "artifactDirectory": "./src/__generated__" }]]
}

TypeScript

Also be sure to configure the TypeScript compiler to transpile to es2015 modules and leave transpilation to commonjs modules up to Babel with the following tsconfig.json settings:

{
  "compilerOptions": {
    "target": "es2015",
    "module": "es2015"
  }
}

The reason for this is that tsc would otherwise generate code where the imported graphql function is being namespaced (react_relay_1 in this example):

react_relay_1.createFragmentContainer(
  MyComponent,
  react_relay_1.graphql`
  ...
`
);

…and this makes it impossible for babel-plugin-relay to find the locations where the graphql function is being used.

Note that this does mean you need to configure Babel to transform the ES module import and export statements, by using the babel-plugin-transform-es2015-modules-commonjs transform plugin, if you’re not already.

Problems

React Hot Loader

React Hot Loader is known to not always work well with generated code such as our typing artefacts, which will lead to loading modules with TypeScript types into the browser and break. As a maintainer of RHL pointed out in a similar issue:

The problem - hot reloading is not "complete"

So until RHL will be made “complete” this project can’t gurantee to always work well with it, nor is it our control to do anything about that.

Also see

License

This package is available under the MIT license. See the included LICENSE file for details.

relay-compiler-language-typescript's People

Contributors

alloy avatar sibelius avatar renanmav avatar dependabot-preview[bot] avatar zephraph avatar thicodes avatar kastermester avatar ds300 avatar koddsson avatar n1ru4l avatar maraisr avatar ashfurrow avatar wadamek65 avatar timjacobi avatar orta avatar artola avatar sorenhoyer avatar jquense avatar kalekseev avatar anotherhermit avatar martinandert avatar ktosiek avatar ro-savage avatar nodkz avatar nickdbush avatar mattkrick avatar creatyvtype avatar taion avatar ducthienbui97 avatar enisdenjo avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.