feat: add tsconfig.json

Adds a `tsconfig.json` file in the root so that typecheck checks only local package and not the entire dependency tree.
This commit is contained in:
emizzle 2019-09-11 15:58:31 +10:00
parent 48466d3a03
commit 1269209d15
No known key found for this signature in database
GPG Key ID: 1FD4BAB3C37EE9BA
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
{
"extends": "../../../tsconfig.json",
"include": [
"src/**/*"
]
}