We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab5b5df commit 1dc33b2Copy full SHA for 1dc33b2
2 files changed
package.json
@@ -22,7 +22,8 @@
22
},
23
"scripts": {
24
"benchmark": "node lib/deep-equal-benchmark.js",
25
- "build": "rm -rf types && tsgo",
+ "prebuild": "rm -rf types",
26
+ "build": "tsgo",
27
"jsdoc": "jsdoc -c jsdoc.conf.json",
28
"lint": "eslint .",
29
"prepublishOnly": "npm run build && mkdocs gh-deploy -r upstream || mkdocs gh-deploy -r origin",
tsconfig.json
@@ -2,10 +2,10 @@
2
"include": ["lib/*.js"],
3
"exclude": ["lib/*.test.js"],
4
"compilerOptions": {
5
+ "allowJs": true,
6
"declaration": true,
7
"emitDeclarationOnly": true,
- "allowJs": true,
8
- "rootDir": ".",
+ "rootDir": "lib",
9
"outDir": "types"
10
}
11
0 commit comments