feat(core): TypeScript 4 + cleanup (#8967)

This commit is contained in:
Nathan Walker
2020-10-19 09:28:05 -07:00
committed by GitHub
parent 99bb067420
commit 2243660080
266 changed files with 677 additions and 1014 deletions

11
jest.preset.js Normal file
View File

@ -0,0 +1,11 @@
const nxPreset = require('@nrwl/jest/preset');
module.exports = {
...nxPreset,
testMatch: ['**/+(*.)+(spec|test).+(ts|js)?(x)'],
transform: {
'^.+\\.(ts|js|html)$': 'ts-jest',
},
resolver: '@nrwl/jest/plugins/resolver',
moduleFileExtensions: ['ts', 'js', 'html'],
coverageReporters: ['html'],
};