fix some type errors

This commit is contained in:
mrjvs 2023-06-21 15:17:54 +02:00
parent 6805a79f1c
commit b84cfdeaf9
3 changed files with 2 additions and 4 deletions

View File

@ -3,7 +3,7 @@ module.exports = {
browser: true,
},
extends: ['airbnb-base', 'plugin:@typescript-eslint/recommended', 'plugin:prettier/recommended'],
ignorePatterns: ['lib/*', '/*.js', '/*.ts'],
ignorePatterns: ['lib/*', '/*.js', '/*.ts', '/**/*.test.ts'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',

View File

@ -1,3 +1,4 @@
import { describe, expect, it } from 'vitest';
import { LOG } from '@/testing/oof';
describe('oof.ts', () => {

View File

@ -27,7 +27,4 @@ module.exports = defineConfig({
fileName: 'providers',
},
},
test: {
globals: true,
},
});