c45bc91389
Fixes vector-im/element-web#17743 The package @types/jest was not discovered because if types is specified, only packages listed will be included in the global scope.
19 lines
374 B
JSON
19 lines
374 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2016",
|
|
"noImplicitAny": false,
|
|
"sourceMap": true,
|
|
"outDir": "./lib",
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./spec/**/*.ts",
|
|
]
|
|
}
|