FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Exceptionless.JavaScript/vitest.config.ts at main · exceptionless/Exceptionless.JavaScript · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
exceptionless
/
Exceptionless.JavaScript
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
22
Star
60
Code
Issues
0
Pull requests
11
Actions
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
Exceptionless.JavaScript
/
vitest.config.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
112 lines (110 loc) · 3.05 KB
Breadcrumbs
Exceptionless.JavaScript
/
vitest.config.ts
Copy path
File metadata and controls
112 lines (110 loc) · 3.05 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import
{
defineConfig
}
from
"vitest/config"
;
import
path
from
"path"
;
import
{
fileURLToPath
}
from
"url"
;
const
__dirname
=
path
.
dirname
(
fileURLToPath
(
import
.
meta
.
url
)
)
;
export
default
defineConfig
(
{
test
:
{
projects
:
[
{
test
:
{
name
:
"core"
,
root
:
"packages/core"
,
environment
:
"jsdom"
,
environmentOptions
:
{
jsdom
:
{
url
:
"http://localhost/"
}
}
,
setupFiles
:
[
"./test/setup.ts"
]
}
,
resolve
:
{
conditions
:
[
"source"
]
,
alias
:
{
"@exceptionless/core"
:
path
.
resolve
(
__dirname
,
"packages/core/src"
)
}
}
}
,
{
test
:
{
name
:
"browser"
,
root
:
"packages/browser"
,
environment
:
"jsdom"
,
environmentOptions
:
{
jsdom
:
{
url
:
"http://localhost/"
}
}
,
setupFiles
:
[
"../../packages/core/test/setup.ts"
]
}
,
resolve
:
{
conditions
:
[
"source"
]
,
alias
:
{
"@exceptionless/core"
:
path
.
resolve
(
__dirname
,
"packages/core/src"
)
,
"@exceptionless/browser"
:
path
.
resolve
(
__dirname
,
"packages/browser/src"
)
}
}
}
,
{
test
:
{
name
:
"node"
,
root
:
"packages/node"
,
environment
:
"node"
}
,
resolve
:
{
conditions
:
[
"source"
]
,
alias
:
{
"@exceptionless/core"
:
path
.
resolve
(
__dirname
,
"packages/core/src"
)
}
}
}
,
{
test
:
{
name
:
"react"
,
root
:
"packages/react"
,
environment
:
"jsdom"
,
environmentOptions
:
{
jsdom
:
{
url
:
"http://localhost/"
}
}
}
,
resolve
:
{
conditions
:
[
"source"
]
,
alias
:
{
"@exceptionless/core"
:
path
.
resolve
(
__dirname
,
"packages/core/src"
)
,
"@exceptionless/browser"
:
path
.
resolve
(
__dirname
,
"packages/browser/src"
)
,
"@exceptionless/react"
:
path
.
resolve
(
__dirname
,
"packages/react/src"
)
}
}
}
,
{
test
:
{
name
:
"react-native"
,
root
:
"packages/react-native"
,
environment
:
"jsdom"
,
environmentOptions
:
{
jsdom
:
{
url
:
"http://localhost/"
}
}
}
,
resolve
:
{
conditions
:
[
"source"
]
,
alias
:
{
"@exceptionless/core"
:
path
.
resolve
(
__dirname
,
"packages/core/src"
)
,
"@exceptionless/react-native"
:
path
.
resolve
(
__dirname
,
"packages/react-native/src"
)
,
"react-native"
:
path
.
resolve
(
__dirname
,
"packages/react-native/test/__mocks__/react-native.ts"
)
,
"@react-native-async-storage/async-storage"
:
path
.
resolve
(
__dirname
,
"packages/react-native/test/__mocks__/async-storage.ts"
)
}
}
}
,
{
test
:
{
name
:
"nextjs-example"
,
root
:
"example/nextjs"
,
environment
:
"node"
}
}
]
}
}
)
;
Back
|
FazBrowse Home
|
New Git URL