-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (38 loc) · 1.07 KB
/
Copy pathtsconfig.json
File metadata and controls
43 lines (38 loc) · 1.07 KB
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
36
37
38
39
40
41
42
43
{
"compilerOptions": {
// Language and Environment
"target": "ESNext",
"lib": ["ES2023"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
// Emit
"declaration": false,
"sourceMap": true,
"rootDir": "./src",
"outDir": "./dist",
"removeComments": true,
"importHelpers": false,
// Interop Constraints
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"rewriteRelativeImportExtensions": true,
"erasableSyntaxOnly": true,
// Type Checking
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": false,
"exactOptionalPropertyTypes": true,
// Completeness
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}