-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.browser.json
46 lines (46 loc) · 1.12 KB
/
tsconfig.browser.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
41
42
43
44
45
46
{
"compilerOptions": {
"allowJs": true,
"noImplicitAny": true,
"module": "esnext",
"target": "es6",
"lib": [
"esnext",
"dom",
"dom.iterable"
],
"esModuleInterop": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"sourceMap": true,
"moduleResolution": "Node",
"baseUrl": ".",
"types": [
"@nodecg/types/augment-window",
"@types/obs-studio/index"
],
"strictNullChecks": true,
"paths": {
"types/*": [
"src/types/*"
],
"client-shared/*": [
"src/client-shared/*"
],
"shared/*": [
"src/shared/*"
],
"components/*": [
"src/graphics/components/*"
]
},
"resolveJsonModule": true
},
"include": [
"src/dashboard/**/*.ts",
"src/dashboard/**/*.vue",
"src/graphics/**/*.ts",
"src/graphics/**/*.vue",
"src/client-shared/**/*.ts"
]
}