chore(ui,icons,ui-preset,toolbox): Move design system packages to monorepo (#5470)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
/// <reference types="vitest" />
|
||||
/// <reference types="vite/client" />
|
||||
|
||||
import react from "@vitejs/plugin-react"
|
||||
import { defineConfig } from "vite"
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
test: {
|
||||
setupFiles: "./setup-test.ts",
|
||||
coverage: {
|
||||
all: true,
|
||||
reporter: ["lcov", "text"],
|
||||
include: ["src/**"],
|
||||
exclude: ["**/*.stories.tsx", "**/index.ts"], // exclude stories and index files
|
||||
},
|
||||
globals: true,
|
||||
environment: "jsdom",
|
||||
css: false,
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user