-
Notifications
You must be signed in to change notification settings - Fork 17
/
tsconfig.json
35 lines (35 loc) · 991 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
34
35
{
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["src/**/*", "src/**/*.json"],
"compilerOptions": {
"lib": ["DOM", "ES2022"],
"target": "ES2015",
/* Input/output paths */
"outDir": "dist/types",
"rootDir": "src",
/* Output Options */
"declaration": true,
"noEmit": true,
/* Module Resolution Options */
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"preserveSymlinks": true,
/* Advanced Options */
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
/* Strict Type-Checking Options */
"strict": true,
"isolatedModules": true,
/* Additional Checks */
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
/* Incremental Build Options */
"incremental": true,
/* "Classic" React JSX pragma */
"jsx": "react"
}
}