chore: Fix type errors

This commit is contained in:
Sojin Park 2024-09-08 17:54:22 +09:00
parent c37e1c5b09
commit 9dd29d59d6
2 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { describe, it, expect } from 'vitest';
import { attempt } from './attempt';
import { isEqual } from '../predicate';
import { isEqual } from '../../predicate/isEqual';
describe('attempt', () => {
const errors = [

View File

@ -11,5 +11,6 @@
"strict": true,
"skipLibCheck": true
},
"include": ["src", ".scripts/**/*"]
"include": ["src", ".scripts/**/*"],
"exclude": [".scripts/docs/**/*"]
}