-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
28 lines (28 loc) · 908 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
{
"extends": ["@epic-web/config/typescript", "astro/tsconfigs/strict"],
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"lib": ["esnext", "DOM", "DOM.Iterable"],
"paths": {
"~/@bottom-bar/*": ["./src/modules/bottom-bar-block/*"],
"~/@capture-guard/*": ["./src/modules/capture-guard-block/*"],
"~/@countdown-timer/*": ["./src/modules/countdown-timer-block/*"],
"~/@dashboard/*": ["./src/modules/dashboard/*"],
"~/@pre-stream/*": ["./src/modules/pre-stream-scene/*"],
"~/@studio-clock/*": ["src/modules/studio-clock/*"],
"~/@time-signal/*": ["./src/modules/time-signal-block/*"],
"~/*": ["./src/*"]
},
"plugins": [
{
"name": "@astrojs/ts-plugin"
}
],
"strictNullChecks": true,
"verbatimModuleSyntax": true,
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"exclude": ["dist/**/*"]
}