Skip to content

Commit

Permalink
test(typescript): fix invalid tsconfig.json (#3415)
Browse files Browse the repository at this point in the history
The entries in `paths` should be arrays. See the [schema](http://json.schemastore.org/tsconfig).
  • Loading branch information
thorn0 authored and timdorr committed Apr 29, 2019
1 parent 0274bbe commit 86bca8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/typescript/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"strict": true,
"baseUrl": "../..",
"paths": {
"redux": "index.d.ts"
"redux": ["index.d.ts"]
}
}
}
}

0 comments on commit 86bca8c

Please sign in to comment.