hedgedoc/tsconfig.json
David Mehren 9395db2744
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>
2021-09-06 16:35:54 +02:00

16 lines
399 B
JSON

{
"extends": "@tsconfig/node12/tsconfig.json",
"compilerOptions": {
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"strict": true,
"strictPropertyInitialization": false
}
}