Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion packages/gatsby-plugin-ts/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ In order for this plugin to work right, you'd need to set your compile options l
"moduleResolution": "node", /* <-- required! */

/* for mixed ts/js codebase */
"allowJS": true,
"allowJs": true,
"outDir": "./build" /* this won't be used by ts-loader */
/* other options... */
}
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Here's a list of common questions I've seen since releasing this project. If you
You'd have to update your `tsconfig` with the below options:

```json
"allowJS": true,
"allowJs": true,
"outDir": "./build"
```

Expand Down