-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathtsconfig.json
56 lines (56 loc) · 1.07 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
{
"include": [
".eslintrc.js",
"commitlint.config.js",
"jest.config.js",
"src",
"test",
],
"exclude": [
"node_modules",
],
"compilerOptions": {
"target": "es2022",
"module": "commonjs",
"plugins": [
{
"transform": "ts-auto-mock/transformer",
"cacheBetweenTests": false
}
],
"rootDirs": [
"src",
"test"
],
"lib": [
"es2022"
],
"importHelpers": true,
"declaration": true,
"sourceMap": true,
"outDir": "./lib",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"moduleResolution": "node",
"baseUrl": "./",
"esModuleInterop": true,
"resolveJsonModule": true,
"paths": {
"~/*": [
"src/*"
],
"test/*": [
"test/*"
]
}
}
}