-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
27 lines (27 loc) · 951 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
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext" /* Specify what module code is generated. */,
"moduleResolution": "Bundler" /* Specify how TypeScript looks up a file from a given module specifier. */,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"baseUrl": "src" /* Specify the base directory to resolve non-relative module names. */,
"declaration": true,
"declarationDir": "dist",
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noPropertyAccessFromIndexSignature": true
}
}