-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
40 lines (40 loc) · 950 Bytes
/
tsconfig.json
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
{
"extends": "../../tsconfig.base.json",
"include": [
"src"
],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo",
"types": [
// from tsconfig.base.json
"vite/client",
"@types/dom-mediacapture-transform",
"@types/offscreencanvas",
// rrweb specific:
/*
* @see https://vitest.dev/config/#globals
* if we remove the --globals flag from the vite test command, we can remove this
* to remove the flag, we need to add vitest imports in the test files
*/
"vitest/globals"
],
// TODO: enable me in the future, this is quite a large project
// at time of writing (April 2024) there are over 100 errors in rrweb
"strict": false
},
"references": [
{
"path": "../types"
},
{
"path": "../utils"
},
{
"path": "../rrdom"
},
{
"path": "../rrweb-snapshot"
}
]
}