We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08a4ef commit 7e1b524Copy full SHA for 7e1b524
.npmignore
@@ -13,3 +13,4 @@
13
/docs
14
/benches
15
/builds
16
+/dist/tsbuildinfo
package.json
@@ -25,6 +25,7 @@
25
]
26
},
27
"scripts": {
28
+ "prepare": "tsc -p ./tsconfig.build.json",
29
"build": "rm -r ./dist || true; tsc -p ./tsconfig.build.json",
30
"ts-node": "ts-node -r tsconfig-paths/register",
31
"test": "jest",
tsconfig.json
@@ -1,7 +1,7 @@
1
{
2
"compilerOptions": {
3
"outDir": "./dist",
4
- "tsBuildInfoFile": "./tmp/tsbuildinfo",
+ "tsBuildInfoFile": "./dist/tsbuildinfo",
5
"incremental": true,
6
"sourceMap": true,
7
"declaration": true,
0 commit comments