chore(vite): remove vite/global for commons

This commit is contained in:
Elian Doran 2026-01-01 23:43:59 +02:00
parent 032cde67b0
commit 11779fe3e3
No known key found for this signature in database
3 changed files with 3 additions and 1 deletions

View File

@ -9,6 +9,7 @@
import { LOCALES } from "./i18n.js";
import { DAYJS_LOADER, dayjs } from "./dayjs.js";
import { describe, expect, it } from "vitest";
describe("dayjs", () => {
it("all dayjs locales are valid", async () => {

View File

@ -1,4 +1,5 @@
import { deferred } from "./utils.js";
import { describe, expect, it } from "vitest";
describe("#deferred", () => {
it("should return a promise", () => {

View File

@ -3,7 +3,7 @@
"compilerOptions": {
"outDir": "./out-tsc/vitest",
"types": [
"vitest/globals",
"",
"node",
"vitest"
],