forked from Manuel1234477/Stellar-Micro-Donation-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
56 lines (49 loc) · 1.23 KB
/
Copy pathtsconfig.json
File metadata and controls
56 lines (49 loc) · 1.23 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"compilerOptions": {
// Enable type checking without code transformation (checkJs enables JavaScript type checking)
"checkJs": true,
// Module and target settings
"module": "commonjs",
"target": "ES2020",
// JavaScript/JSDoc file support
"allowJs": true,
"noEmit": true,
// Strict type checking
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"noImplicitAny": true,
"noImplicitThis": true,
// Other type checks
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
// Module resolution
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
// Diagnostic options
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"pretty": true,
// Path mapping (Node.js style)
"baseUrl": "."
},
"include": [
"src/**/*.js"
],
"exclude": [
"node_modules",
"tests",
"coverage",
"dist",
".git"
]
}