Skip to content
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

[gatsby-plugin-typescript] fixed reference to babel docs in README #7990

Merged
merged 1 commit into from
Sep 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions packages/gatsby-plugin-typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ plugins: [`gatsby-plugin-typescript`]

## Caveats

This plugin uses [`babel-plugin-transform-typescript`](https://new.babeljs.io/docs/en/next/babel-plugin-transform-typescript.html) to transpile typescript. It does _not do type checking_. Also since the TypeScript
This plugin uses [`babel-plugin-transform-typescript`](https://babeljs.io/docs/en/babel-plugin-transform-typescript.html)
to transpile typescript. It does _not do type checking_. Also since the TypeScript
compiler is not involved, the following applies:

> Does not support namespaces.
Expand All @@ -36,7 +37,7 @@ compiler is not involved, the following applies:
> to using export default and export const,
> and import x, {y} from "z".

https://new.babeljs.io/docs/en/next/babel-plugin-transform-typescript.html
https://babeljs.io/docs/en/babel-plugin-transform-typescript.html

## Type checking

Expand Down