Skip to content

Commit

Permalink
fix(vite): fix include in tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
xiongemi committed Feb 9, 2024
1 parent 5911ca6 commit 85d69cd
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,12 @@ export async function configurationGeneratorInternal(
include: [
'**/*.ts',
'**/*.js',
`${offsetFromProjectRoot}playwright.config.ts`,
`${offsetFromProjectRoot}**/*.spec.ts`,
`${offsetFromProjectRoot}**/*.spec.js`,
`${offsetFromProjectRoot}**/*.d.ts`,
'playwright.config.ts',
'src/**/*.spec.ts',
'src/**/*.spec.js',
'src/**/*.test.ts',
'src/**/*.test.js',
'src/**/*.d.ts',
],
},
null,
Expand Down

0 comments on commit 85d69cd

Please sign in to comment.