1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-09 12:18:52 +00:00

Merge pull request #195 from jessestuart/jesse/fix_jest_tsconfig_warning

fix(jest): Update deprecated ts-jest config option.
This commit is contained in:
Orta
2019-06-19 14:15:43 -07:00
committed by GitHub

View File

@@ -1,7 +1,7 @@
module.exports = {
globals: {
'ts-jest': {
tsConfigFile: 'tsconfig.json'
tsConfig: 'tsconfig.json'
}
},
moduleFileExtensions: [
@@ -15,4 +15,4 @@ module.exports = {
'**/test/**/*.test.(ts|js)'
],
testEnvironment: 'node'
};
};