Skip to content

Commit

Permalink
ci: multiple dir type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Sep 23, 2021
1 parent 86fb5da commit a93d9c4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
node_modules
dist
esm
*.log
*.tgz
.env
Expand All @@ -10,3 +9,4 @@ esm
.vscode
examples/**/yarn.lock
package-lock.json
tsconfig.tsbuildinfo
13 changes: 10 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"noUnusedParameters": true,
"strictBindCallApply": true,
"outDir": "./dist",
"rootDir": "src",
"rootDir": ".",
"strict": true,
"target": "es5",
"baseUrl": ".",
Expand All @@ -24,8 +24,15 @@
},
"typeRoots": ["./src/types", "./node_modules/@types"]
},
"include": ["src"],
"exclude": ["dist", "node_modules"],
"include": [
"src",
"immutable",
"infinite"
],
"exclude": [
"./**/dist",
"node_modules"
],
"watchOptions": {
"watchFile": "useFsEvents",
"watchDirectory": "useFsEvents",
Expand Down

0 comments on commit a93d9c4

Please sign in to comment.