Skip to content

Commit f91387c

Browse files
committed
chore: remove redundant strict tsconfig flags
1 parent 93ad98a commit f91387c

1 file changed

Lines changed: 6 additions & 26 deletions

File tree

tsconfig.json

Lines changed: 6 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -7,29 +7,13 @@
77
"skipLibCheck": true,
88
"esModuleInterop": true,
99
"paths": {
10-
"@/*": [
11-
"./src/*"
12-
],
13-
"@@/*": [
14-
"./.dumi/tmp/*"
15-
],
16-
"@rc-component/tour": [
17-
"./src/index.tsx"
18-
],
19-
"@rc-component/tour/es": [
20-
"./src"
21-
],
22-
"@rc-component/tour/es/*": [
23-
"./src/*"
24-
]
10+
"@/*": ["./src/*"],
11+
"@@/*": ["./.dumi/tmp/*"],
12+
"@rc-component/tour": ["./src/index.tsx"],
13+
"@rc-component/tour/es": ["./src"],
14+
"@rc-component/tour/es/*": ["./src/*"]
2515
},
26-
"noImplicitAny": false,
27-
"strictNullChecks": false,
28-
"strictPropertyInitialization": false,
29-
"strictFunctionTypes": false,
3016
"strict": false,
31-
"noImplicitThis": false,
32-
"strictBindCallApply": false,
3317
"module": "ESNext"
3418
},
3519
"include": [
@@ -40,9 +24,5 @@
4024
"tests",
4125
"docs/examples"
4226
],
43-
"exclude": [
44-
"docs-dist",
45-
"lib",
46-
"es"
47-
]
27+
"exclude": ["docs-dist", "lib", "es"]
4828
}

0 commit comments

Comments
 (0)