Remove typeRoots from tsconfig

As we got rid of the express types in
`./types`, we can also remove the
`typeRoots` setting.
This also allows ts-jest to find the Jest typings
when run with Yarn PnP.

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-09-06 16:35:54 +02:00
parent 8c238530a7
commit 4a1e9c36c6
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -10,10 +10,6 @@
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"typeRoots": [
"./types",
"./node_modules/@types"
],
"strict": true,
"strictPropertyInitialization": false
}