Skip to content

Commit f34249a

Browse files
refactor: update Vitest configuration and adjust ESLint and TypeScript settings
1 parent b88b328 commit f34249a

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/linters/eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default [
2828
'coverage/**',
2929
'test/**',
3030
'**/.github/linters/**',
31-
'vitest.config.ts'
31+
'vitest.config.mts'
3232
]
3333
},
3434
...compat.extends(

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
"./node_modules",
2121
"./__tests__",
2222
"./coverage",
23-
"./vitest.config.ts"
23+
"./vitest.config.mts"
2424
]
2525
}

vitest.config.ts renamed to vitest.config.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ export default defineConfig({
1313
exclude: ['node_modules', 'dist', '__tests__', 'coverage']
1414
}
1515
}
16-
})
16+
}) as any

0 commit comments

Comments
 (0)