Skip to content

Commit

Permalink
style(modules/profiles/dtos): rename create-profile.ts -> create-pr…
Browse files Browse the repository at this point in the history
…ofile.dto.ts`
  • Loading branch information
Mnigos committed Oct 17, 2023
1 parent 1791e1d commit c691c00
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 1 deletion.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/modules/profiles/dtos/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from './create-profile'
export * from './create-profile.dto'
28 changes: 28 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,34 @@ export default defineConfig({
test: {
globals: true,
root: './',
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html', 'lcov'],
exclude: [
'**/node_modules/**',
'**/migrations/**',
'**/types/**',
'**/constants/**',
'**/tests/**',
'**/index.ts',
'**/main.ts',
'**/*.config.ts',
'**/*.config.js',
'**/*.d.ts',
'**/*.entity.ts',
'**/*.module.ts',
'**/*.schema.ts',
'**/*.mock.ts',
'**/*.enum.ts',
'**/*.dto.ts',
'**/*.svg.*',
'**/*.spec.ts',
'**/*.spec.tsx',
'**/*.cjs',
'**/*.mjs',
],
all: true,
},
},
resolve: {
alias: {
Expand Down

0 comments on commit c691c00

Please sign in to comment.