-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathjsconfig.json
More file actions
37 lines (37 loc) · 818 Bytes
/
jsconfig.json
File metadata and controls
37 lines (37 loc) · 818 Bytes
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
{
"compilerOptions": {
"allowJs": true,
"resolveJsonModule": true,
"module": "commonjs",
"target": "es5",
"jsx": "preserve",
"strictFunctionTypes": true,
"downlevelIteration": true,
"strict": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"baseUrl": ".",
"paths": {
"*": [
"./Build/node_modules/*"
],
"lib/*": [
"Resources/Private/JavaScript/lib/*"
],
"DlfMediaPlayer/*": [
"Resources/Private/JavaScript/DlfMediaPlayer/*"
],
"SlubMediaPlayer/*": [
"Resources/Private/JavaScript/SlubMediaPlayer/*"
]
}
},
"include": [
"./Resources/Private/JavaScript"
],
"exclude": [
"node_modules",
"**/node_modules/*",
"**/vendor/*"
]
}