test: fix test ts target

This commit is contained in:
Evan You 2021-07-02 08:27:52 -04:00
parent 253ca2729d
commit 00bb76b69c

View File

@ -13,7 +13,12 @@ module.exports = {
__FEATURE_OPTIONS_API__: true,
__FEATURE_SUSPENSE__: true,
__FEATURE_PROD_DEVTOOLS__: false,
__COMPAT__: true
__COMPAT__: true,
'ts-jest': {
tsconfig: {
target: 'esnext'
}
}
},
coverageDirectory: 'coverage',
coverageReporters: ['html', 'lcov', 'text'],