-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvitest.config.ts
More file actions
27 lines (25 loc) · 1.05 KB
/
vitest.config.ts
File metadata and controls
27 lines (25 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/** @license 0BSD OR CC0-1.0
*
* Copyright(C) 2024 8 Hobbies, LLC < hong@8hobbies.com >
*
* Permission to use, copy, modify, and / or distribute this software for anypurpose with or without fee
* is hereby granted.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIESWITH REGARD TO THIS SOFTWARE
* INCLUDING ALL IMPLIED WARRANTIES OFMERCHANTABILITY AND FITNESS.IN NO EVENT SHALL THE AUTHOR BE
* LIABLE FORANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGESWHATSOEVER RESULTING
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN ANACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
* ACTION, ARISING OUT OFOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* OR
*
* This work is marked with CC0 1.0 Universal.
* Visit https://creativecommons.org/publicdomain/zero/1.0/legalcode.txt for the full text of the license.
*/
import { configDefaults, defineConfig } from "vitest/config";
export default defineConfig({
test: {
exclude: [...configDefaults.exclude, "dist/*"],
globals: true,
},
});