Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
- babel replaced by swc in jest
- updated husky, lint-staged, eslint, prettier, jest, typescript, ts-node, msw and other
- removed rimraf, babel and other
  • Loading branch information
krutoo committed Oct 24, 2022
1 parent cb1a989 commit 7713040
Show file tree
Hide file tree
Showing 5 changed files with 7,817 additions and 6,394 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ dist
.DS_Store
.cache
.parcel-cache
.vscode
6 changes: 0 additions & 6 deletions babel.config.js

This file was deleted.

7 changes: 5 additions & 2 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import type { Config } from '@jest/types';
import type { Config } from 'jest';

const config: Config.InitialOptions = {
const config: Config = {
setupFilesAfterEnv: ['./.jest/setup.ts'],
transform: {
'^.+\\.(t|j)sx?$': '@swc/jest',
},
};

export default config;
Loading

0 comments on commit 7713040

Please sign in to comment.