-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (26 loc) · 733 Bytes
/
tsconfig.json
File metadata and controls
28 lines (26 loc) · 733 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": {
/* Basic Options */
"target": "es2019",
"module": "node16",
"moduleResolution": "node16",
"lib": ["ES2022"],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"outDir": "dist",
/* Strict Type-Checking Options */
"strict": true,
/* Additional Checks */
"isolatedDeclarations": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": ["website/"] /* The website has its own tsconfig. */
}