feat: initial commit

This commit is contained in:
Krise
2023-08-02 11:42:48 +00:00
parent 91ad3a16b6
commit 681e14ab9f
17 changed files with 2663 additions and 54785 deletions

13
vitest.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vitest/config'
export default defineConfig({
test: {
coverage: {
provider: 'istanbul', // or 'v8'
reporter: ['text', 'json-summary', 'json'],
all: true,
include: ['src/**'],
reportsDirectory: './coverage',
},
},
})