Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default defineConfigWithVueTs(

{
...pluginVitest.configs.recommended,
files: ['src/**/__tests__/*'],
files: ['src/**/__tests__/**/*']
},

...pluginOxlint.buildFromOxlintConfigFile('.oxlintrc.json'),
Expand Down
2 changes: 1 addition & 1 deletion web/tsconfig.vitest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

// Override to include only test files and clear exclusions.
// Application code imported in tests is automatically included via module resolution.
"include": ["src/**/__tests__/*", "env.d.ts"],
"include": ["src/**/__tests__/**/*", "env.d.ts"],
"exclude": [],

"compilerOptions": {
Expand Down
Loading