Skip to content

Commit fec8e65

Browse files
authored
ci: multiple dir type checking (#1492)
1 parent 86fb5da commit fec8e65

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
node_modules
22
dist
3-
esm
43
*.log
54
*.tgz
65
.env
@@ -10,3 +9,4 @@ esm
109
.vscode
1110
examples/**/yarn.lock
1211
package-lock.json
12+
tsconfig.tsbuildinfo

tsconfig.json

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"noUnusedParameters": true,
1313
"strictBindCallApply": true,
1414
"outDir": "./dist",
15-
"rootDir": "src",
15+
"rootDir": ".",
1616
"strict": true,
1717
"target": "es5",
1818
"baseUrl": ".",
@@ -24,8 +24,15 @@
2424
},
2525
"typeRoots": ["./src/types", "./node_modules/@types"]
2626
},
27-
"include": ["src"],
28-
"exclude": ["dist", "node_modules"],
27+
"include": [
28+
"src",
29+
"immutable",
30+
"infinite"
31+
],
32+
"exclude": [
33+
"./**/dist",
34+
"node_modules"
35+
],
2936
"watchOptions": {
3037
"watchFile": "useFsEvents",
3138
"watchDirectory": "useFsEvents",

0 commit comments

Comments
 (0)