1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-25 05:23:13 +03:00

Include all TypeScript @types listed in project dependency

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.
This commit is contained in:
Germain Souquet
2021-08-05 11:16:28 +02:00
parent 69358f8372
commit c45bc91389

View File

@@ -9,12 +9,10 @@
"noImplicitAny": false,
"sourceMap": true,
"outDir": "./lib",
"declaration": true,
"types": [
"node"
]
"declaration": true
},
"include": [
"./src/**/*.ts"
"./src/**/*.ts",
"./spec/**/*.ts",
]
}