We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 668db1a commit c055e74Copy full SHA for c055e74
packages/react-sdk/package.json
@@ -10,14 +10,16 @@
10
}
11
},
12
"scripts": {
13
- "build": "rimraf ./dist; tsc",
+ "clean": "rimraf ./dist",
14
+ "build": "yarn clean; tsc && echo 'React SDK build complete!'",
15
"prepublishOnly": "yarn run build"
16
17
"peerDependencies": {
18
"react": "^17 || ^18 || ^19"
19
20
"files": [
- "dist"
21
+ "dist",
22
+ "!dist/.tsbuildinfo"
23
],
24
"keywords": [
25
"react",
packages/react-sdk/tsconfig.json
@@ -1,6 +1,6 @@
1
{
2
"compilerOptions": {
3
- "tsBuildInfoFile": "./node_modules/.tmp/.tsbuildinfo",
+ "tsBuildInfoFile": "./dist/.tsbuildinfo",
4
"rootDir": "src",
5
"esModuleInterop": true,
6
"skipLibCheck": true,
0 commit comments