Skip to content

Commit

Permalink
idk tsconfig updates
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Dec 20, 2024
1 parent fb3a144 commit 14b8623
Show file tree
Hide file tree
Showing 9 changed files with 63 additions and 63 deletions.
16 changes: 4 additions & 12 deletions packages/all/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,11 @@
{
"extends": "../../tsconfig.base.json",
"include": ["src"],
"include": [
"src"
],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": [
{
"path": "../types"
},
{
"path": "../packer"
},
{
"path": "../rrweb"
}
]
"references": []
}
14 changes: 7 additions & 7 deletions packages/plugins/rrweb-plugin-canvas-webrtc-record/tsconfig.json
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": [
{
"path": "../../rrweb"
}
]
"references": []
}
14 changes: 7 additions & 7 deletions packages/plugins/rrweb-plugin-canvas-webrtc-replay/tsconfig.json
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": [
{
"path": "../../rrweb"
}
]
"references": []
}
17 changes: 9 additions & 8 deletions packages/plugins/rrweb-plugin-console-record/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
{
"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": [
{
"path": "../../rrweb"
}
]
"references": []
}
13 changes: 8 additions & 5 deletions packages/plugins/rrweb-plugin-console-replay/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"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 packages/plugins/rrweb-plugin-sequential-id-record/tsconfig.json
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": [
{
"path": "../../rrweb"
}
]
"references": []
}
13 changes: 8 additions & 5 deletions packages/plugins/rrweb-plugin-sequential-id-replay/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"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"
}
]
}
13 changes: 4 additions & 9 deletions packages/record/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,11 @@
{
"extends": "../../tsconfig.base.json",
"include": ["src"],
"include": [
"src"
],
"compilerOptions": {
"rootDir": "src",
"tsBuildInfoFile": "./tsconfig.tsbuildinfo"
},
"references": [
{
"path": "../types"
},
{
"path": "../rrweb"
}
]
"references": []
}
12 changes: 9 additions & 3 deletions packages/rrweb-player/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
{
"extends": "../../tsconfig.base.json",
"exclude": ["package.json", "vite.config.ts"],
"include": ["src/**/*", "vite-env.d.ts"],
"exclude": [
"package.json",
"vite.config.ts"
],
"include": [
"src/**/*",
"vite-env.d.ts"
],
"compilerOptions": {
"composite": true,
"rootDir": "./src",
Expand All @@ -19,7 +25,7 @@
},
"references": [
{
"path": "../replay"
"path": "../rrweb"
},
{
"path": "../packer"
Expand Down

0 comments on commit 14b8623

Please sign in to comment.