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 8, 2024
1 parent 5f21561 commit bb884d3
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ export async function configurationGeneratorInternal(
sourceMap: false,
},
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 bb884d3

Please sign in to comment.