-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
93 lines (93 loc) · 3.48 KB
/
Copy pathtsconfig.json
File metadata and controls
93 lines (93 loc) · 3.48 KB
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
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"jsx": "react-jsx",
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
"rootDir": ".",
"composite": false,
"noEmit": true,
"paths": {
"@loadout/deck-hid": ["./packages/deck-hid/src"],
"@loadout/deck-hid/*": ["./packages/deck-hid/src/*"],
"@loadout/devices": ["./packages/devices/src"],
"@loadout/devices/*": ["./packages/devices/src/*"],
"@loadout/exec": ["./packages/exec/src"],
"@loadout/exec/*": ["./packages/exec/src/*"],
"@loadout/external-cache": ["./packages/external-cache/src"],
"@loadout/external-cache/*": ["./packages/external-cache/src/*"],
"@loadout/file-picker": ["./packages/file-picker/src"],
"@loadout/file-picker/*": ["./packages/file-picker/src/*"],
"@loadout/game-library": ["./packages/game-library/src"],
"@loadout/game-library/*": ["./packages/game-library/src/*"],
"@loadout/per-game-profiles": ["./packages/per-game-profiles/src"],
"@loadout/per-game-profiles/*": ["./packages/per-game-profiles/src/*"],
"@loadout/plugin-storage": ["./packages/plugin-storage/src"],
"@loadout/plugin-storage/*": ["./packages/plugin-storage/src/*"],
"@loadout/sgdb-art": ["./packages/sgdb-art/src"],
"@loadout/sgdb-art/*": ["./packages/sgdb-art/src/*"],
"@loadout/steam-cdp": ["./packages/steam-cdp/src"],
"@loadout/steam-cdp/*": ["./packages/steam-cdp/src/*"],
"@loadout/steam-cef-badges": ["./packages/steam-cef-badges/src"],
"@loadout/steam-cef-badges/*": ["./packages/steam-cef-badges/src/*"],
"@loadout/steam-paths": ["./packages/steam-paths/src"],
"@loadout/steam-paths/*": ["./packages/steam-paths/src/*"],
"@loadout/steam-shortcut": ["./packages/steam-shortcut/src"],
"@loadout/steam-shortcut/*": ["./packages/steam-shortcut/src/*"],
"@loadout/types": ["./packages/types/src"],
"@loadout/types/*": ["./packages/types/src/*"],
"@loadout/ui": ["./packages/ui/src"],
"@loadout/ui/*": ["./packages/ui/src/*"],
"@loadout/vdf": ["./packages/vdf/src"],
"@loadout/vdf/*": ["./packages/vdf/src/*"],
"@loadout/wake": ["./packages/wake/src"],
"@loadout/wake/*": ["./packages/wake/src/*"],
"@overlay/*": ["./apps/loadout-overlay/src/overlay/*"],
"electrobun/bun": ["./types/electrobun-shims.d.ts"],
"electrobun/view": ["./types/electrobun-shims.d.ts"]
}
},
"include": [
"types/**/*.d.ts",
"packages/*/src/**/*.ts",
"packages/*/src/**/*.tsx",
"apps/*/src/**/*.ts",
"apps/*/src/**/*.tsx",
"plugins/*/backend.ts",
"plugins/*/panel.tsx",
"plugins/*/app.tsx",
"plugins/*/*.ts",
"plugins/*/*.tsx",
"plugins/*/lib/**/*.ts",
"plugins/*/lib/**/*.tsx",
"plugins/*/components/**/*.ts",
"plugins/*/components/**/*.tsx",
"plugins/*/games/**/*.ts",
"plugins/*/scripts/**/*.ts"
],
"exclude": [
"node_modules",
"dist",
"**/build/**",
"**/.cache/**",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx"
]
}