Skip to content

Commit

Permalink
Updated to use 'import'
Browse files Browse the repository at this point in the history
  • Loading branch information
seog-jun committed Nov 26, 2023
1 parent 9c82ffe commit 153700e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libs/movex/.eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"overrides": [
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": { "@typescript-eslint/no-var-requires": 0 }
"rules": {}
},
{
"files": ["*.ts", "*.tsx"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ import gameReducerWithDerivedState, {
} from '../resources/gameReducerWithDerivedState';
import { movexClientMasterOrchestrator } from '../util/orchestrator';
import { tillNextTick } from '../util/misc';
require('console-group').install();
import * as consoleGroup from 'console-group';
consoleGroup.install();

beforeAll(() => {
globalLogsy.disable();
Expand Down

0 comments on commit 153700e

Please sign in to comment.