mirror of
https://github.com/iconify/collections-json.git
synced 2024-11-08 14:21:00 +00:00
14 lines
245 B
JavaScript
14 lines
245 B
JavaScript
|
const { defineConfig } = require('vitest/config');
|
||
|
|
||
|
module.exports = defineConfig({
|
||
|
resolve: {
|
||
|
mainFields: ['require'],
|
||
|
extensions: ['.cjs'],
|
||
|
},
|
||
|
test: {
|
||
|
globals: true,
|
||
|
watch: false,
|
||
|
include: ['src/*.test.ts'],
|
||
|
},
|
||
|
});
|