-
Notifications
You must be signed in to change notification settings - Fork 19
/
tsconfig.json
47 lines (41 loc) · 1.09 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
{
"include": ["./src/**/*", "test/test.ts"],
"ts-node": {
"transpileOnly": true,
"transpiler": "ts-node/transpilers/swc-experimental",
"files": true
},
"compilerOptions": {
/* Projects */
"incremental": true,
"tsBuildInfoFile": ".tsbuildinfo",
/* Language and Environment */
"target": "ESNext",
"lib": ["ESNext"],
"types": ["node"],
/* Modules */
"module": "commonjs",
"rootDir": "./src",
"moduleResolution": "node",
"resolveJsonModule": true,
/* Emit */
"declaration": true,
"sourceMap": true,
"outDir": "./dist",
"newLine": "lf",
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"useUnknownInCatchVariables": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
// "noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
/* Completeness */
"skipLibCheck": true
}
}