UNPKG
a-seal
Version:
latest (3.0.0)
3.0.0
2.1.3
2.1.2
2.1.1
2.1.0
1.0.2
1.0.1
1.0.0
0.2.0
0.1.1
0.1.0
Access Control Library (ACL)
github.com/philmander/a-seal
philmander/a-seal
a-seal
/
vitest.config.ts
15 lines
(13 loc)
•
289 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { defineConfig }
from
'vitest/config'
export
default
defineConfig
({
test
: {
globals
:
true
,
chaiConfig
: {
truncateThreshold
:
100000
, },
typecheck
: {
tsconfig
:
'./tsconfig.json'
, },
include
: [
'./src/**/*.test.ts'
,
'./src/**/*.test.js'
], }, })