This commit is contained in:
Nathan Bierema 2020-08-24 00:03:02 -04:00
parent 973c832a25
commit b7d06bb3b4
2 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,7 @@
{
"extends": "../../tsconfig.react.base.json",
"compilerOptions": {
"outDir": "lib",
// See https://github.com/DefinitelyTyped/DefinitelyTyped/issues/33311
"types": ["jest"]
"outDir": "lib"
},
"include": ["src"]
}

View File

@ -6,6 +6,8 @@
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,
// See https://github.com/DefinitelyTyped/DefinitelyTyped/issues/33311
"types": ["jest"]
}
}