forked from rrweb-io/rrweb
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from pendo-io/fix-deploy
Remove @pendo prefix from package.json name field
- Loading branch information
Showing
11 changed files
with
57 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 7 additions & 7 deletions
14
packages/plugins/rrweb-plugin-canvas-webrtc-record/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"include": [ | ||
"src" | ||
], | ||
"exclude": [ | ||
"vite.config.ts" | ||
], | ||
"include": ["src"], | ||
"exclude": ["vite.config.ts"], | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"tsBuildInfoFile": "./tsconfig.tsbuildinfo" | ||
}, | ||
"references": [] | ||
"references": [ | ||
{ | ||
"path": "../../rrweb" | ||
} | ||
] | ||
} |
14 changes: 7 additions & 7 deletions
14
packages/plugins/rrweb-plugin-canvas-webrtc-replay/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"include": [ | ||
"src" | ||
], | ||
"exclude": [ | ||
"vite.config.ts" | ||
], | ||
"include": ["src"], | ||
"exclude": ["vite.config.ts"], | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"tsBuildInfoFile": "./tsconfig.tsbuildinfo" | ||
}, | ||
"references": [] | ||
"references": [ | ||
{ | ||
"path": "../../rrweb" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,18 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"include": [ | ||
"src" | ||
], | ||
"exclude": [ | ||
"vite.config.ts", | ||
"vitest.config.ts", | ||
"test" | ||
], | ||
"include": ["src"], | ||
"exclude": ["vite.config.ts", "vitest.config.ts", "test"], | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"tsBuildInfoFile": "./tsconfig.tsbuildinfo", | ||
|
||
// TODO: enable me in the future | ||
// at time of writing (April 2024) there are 6 errors in this package | ||
"strict": false | ||
}, | ||
"references": [] | ||
"references": [ | ||
{ | ||
"path": "../../rrweb" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"include": [ | ||
"src" | ||
], | ||
"exclude": [ | ||
"vite.config.ts", | ||
"dist", | ||
"tsconfig.json" | ||
], | ||
"include": ["src"], | ||
"exclude": ["vite.config.ts", "dist", "tsconfig.json"], | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"tsBuildInfoFile": "./tsconfig.tsbuildinfo" | ||
}, | ||
"references": [ | ||
{ | ||
"path": "../rrweb-plugin-console-record" | ||
}, | ||
{ | ||
"path": "../../rrweb" | ||
} | ||
] | ||
} |
14 changes: 7 additions & 7 deletions
14
packages/plugins/rrweb-plugin-sequential-id-record/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"include": [ | ||
"src" | ||
], | ||
"exclude": [ | ||
"vite.config.ts" | ||
], | ||
"include": ["src"], | ||
"exclude": ["vite.config.ts"], | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"tsBuildInfoFile": "./tsconfig.tsbuildinfo" | ||
}, | ||
"references": [] | ||
"references": [ | ||
{ | ||
"path": "../../rrweb" | ||
} | ||
] | ||
} |
13 changes: 5 additions & 8 deletions
13
packages/plugins/rrweb-plugin-sequential-id-replay/tsconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
{ | ||
"extends": "../../../tsconfig.base.json", | ||
"include": [ | ||
"src" | ||
], | ||
"exclude": [ | ||
"vite.config.ts", | ||
"dist", | ||
"tsconfig.json" | ||
], | ||
"include": ["src"], | ||
"exclude": ["vite.config.ts", "dist", "tsconfig.json"], | ||
"compilerOptions": { | ||
"rootDir": ".", | ||
"tsBuildInfoFile": "./tsconfig.tsbuildinfo" | ||
}, | ||
"references": [ | ||
{ | ||
"path": "../rrweb-plugin-sequential-id-record" | ||
}, | ||
{ | ||
"path": "../../rrweb" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"include": [ | ||
"src" | ||
], | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"tsBuildInfoFile": "./tsconfig.tsbuildinfo" | ||
}, | ||
"references": [ | ||
{ | ||
"path": "../types" | ||
}, | ||
{ | ||
"path": "../rrweb" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
{ | ||
"extends": "../../tsconfig.base.json", | ||
"include": [ | ||
"src" | ||
], | ||
"include": ["src"], | ||
"compilerOptions": { | ||
"rootDir": "src", | ||
"tsBuildInfoFile": "./tsconfig.tsbuildinfo" | ||
}, | ||
"references": [ | ||
{ | ||
"path": "../types" | ||
}, | ||
{ | ||
"path": "../rrweb" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters