Skip to content

Commit

Permalink
chore: add global type roots to tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Artur Santiago committed Oct 14, 2021
1 parent 6ef575a commit ef4b1a6
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,16 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "src"
"baseUrl": "src",
"typeRoots": [
"./node_modules/@types",
"./src/@types"
]
},
"include": [
"src"
],
"exclude": [
"node_modules"
]
}

0 comments on commit ef4b1a6

Please sign in to comment.