We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86fb5da commit fec8e65Copy full SHA for fec8e65
.gitignore
@@ -1,6 +1,5 @@
1
node_modules
2
dist
3
-esm
4
*.log
5
*.tgz
6
.env
@@ -10,3 +9,4 @@ esm
10
9
.vscode
11
examples/**/yarn.lock
12
package-lock.json
+tsconfig.tsbuildinfo
tsconfig.json
@@ -12,7 +12,7 @@
"noUnusedParameters": true,
13
"strictBindCallApply": true,
14
"outDir": "./dist",
15
- "rootDir": "src",
+ "rootDir": ".",
16
"strict": true,
17
"target": "es5",
18
"baseUrl": ".",
@@ -24,8 +24,15 @@
24
},
25
"typeRoots": ["./src/types", "./node_modules/@types"]
26
27
- "include": ["src"],
28
- "exclude": ["dist", "node_modules"],
+ "include": [
+ "src",
29
+ "immutable",
30
+ "infinite"
31
+ ],
32
+ "exclude": [
33
+ "./**/dist",
34
+ "node_modules"
35
36
"watchOptions": {
37
"watchFile": "useFsEvents",
38
"watchDirectory": "useFsEvents",
0 commit comments