mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
9395db2744
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>
16 lines
399 B
JSON
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
|
|
}
|
|
}
|