-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (25 loc) · 644 Bytes
/
tsconfig.json
File metadata and controls
28 lines (25 loc) · 644 Bytes
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
{
"compilerOptions": {
// Module resolution
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
// JSX
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
// Core checks
"strict": true,
"noEmit": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
// Additional safety
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": true,
"noUnusedLocals": true,
"allowImportingTsExtensions": true
}
}