-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtsconfig.json
33 lines (33 loc) · 890 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
{
"compilerOptions": {
"module": "NodeNext",
"target": "ESNext",
"isolatedModules": true,
"resolveJsonModule": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": [
"@stedit/menu-drop",
"@stedit/num-text",
"new-javascript/wicg/file-system-access",
"new-javascript/wicg/manifest-incubations",
"new-javascript/wicg/ua-client-hints",
"new-javascript/wicg/web-app-launch",
"new-javascript/wicg/window-controls-overlay",
"vite/client"
],
"noEmit": true,
"skipLibCheck": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"allowUnreachableCode": false,
"noUnusedLocals": true,
"allowUnusedLabels": false,
"noUnusedParameters": true
},
"exclude": [
"./src/service-worker"
]
}