Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
erikyo committed May 13, 2024
1 parent 0c161fe commit 2de10d8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"jsdelivr": "lib/browser/ISOToLanguage.js",
"exports": {
".": {
"types": "./lib/cjs/esm/index.d.ts",
"types": "./lib/index.d.ts",
"require": {
"default": "./lib/index.cjs",
"types": "./lib/index.d.cts"
Expand Down
1 change: 0 additions & 1 deletion src/isoToLanguage.ts

This file was deleted.

11 changes: 11 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { configDefaults, defineConfig } from "vitest/config";

export default defineConfig({
test: {
include: ["**/?(*.)+(spec|test).ts"],
coverage: {
include: ["src/**/*.{ts,tsx}"],
reporter: ["text", "lcov"],
},
},
});

0 comments on commit 2de10d8

Please sign in to comment.