-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (49 loc) · 1.42 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* This setting is used by me to activate the super-strict compilation method.
* Defaults are omitted from this file. Only non-default settings are changed here.
* For reference, see more at https://aka.ms/tsconfig.json.
*/
{
"ts-node": {
"esm": true,
"files": true,
"transpileOnly": true,
"experimentalResolver": true,
"experimentalSpecifierResolution": "node"
},
"compilerOptions": {
/* Basic Options */
"target": "ESNext",
"module": "ESNext",
"lib": ["ESNext"],
"outDir": "dist",
"removeComments": true,
"isolatedModules": true,
/* Strict Type-Checking Options */
"strict": true,
"strictPropertyInitialization": false,
/* Additional Checks */
"noUnusedLocals": false,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": false,
/* Module Resolution Options */
"moduleResolution": "Node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
/* Advanced Options */
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
/* Default */
"baseUrl": "./",
/* Custom Paths */
"paths": {
"@/*": ["./src/*"],
"@@/*": ["./*"]
}
},
"include": ["src", "extensions.d.ts", "eslint.config.mjs"],
"exclude": ["node_modules", "dist", "cdk.out", "__tests__", "__tests_setup__"]
}