Skip to content

Commit

Permalink
fix: πŸ› use correct tsconfig.json in bfetch test plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Jan 13, 2020
1 parent 364826c commit 6f76117
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
{
"extends": "../../tsconfig.json",
"extends": "../../../tsconfig.json",
"compilerOptions": {
"outDir": "./target",
"skipLibCheck": true
"skipLibCheck": true,
"types": [
"node",
"jest",
"react"
]
},
"include": [
"index.ts",
"public/**/*.ts",
"public/**/*.tsx",
"server/**/*.ts",
"../../typings/**/*",
"../../../../typings/**/*",
],
"exclude": []
}

0 comments on commit 6f76117

Please sign in to comment.