feat(frontend): add types + format helpers with tdd
This commit is contained in:
parent
3b8400b2ed
commit
a1e24c6a81
5 changed files with 150 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
|||
import { defineConfig } from 'vitest/config';
|
||||
import { resolve } from 'node:path';
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
|
|
@ -6,4 +7,11 @@ export default defineConfig({
|
|||
include: ['src/tests/**/*.test.ts', 'src/tests/**/*.test.tsx'],
|
||||
globals: false,
|
||||
},
|
||||
resolve: {
|
||||
alias: {
|
||||
'@lib': resolve(__dirname, 'src/lib'),
|
||||
'@components': resolve(__dirname, 'src/components'),
|
||||
'@styles': resolve(__dirname, 'src/styles'),
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue