Skip to content

Commit

Permalink
lint?
Browse files Browse the repository at this point in the history
  • Loading branch information
billyvg committed Aug 30, 2023
1 parent cd4362e commit d5627da
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
6 changes: 3 additions & 3 deletions packages/rrweb/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
"composite": true
},
"references": [
{
"path": "../types"
},
{
"path": "../rrdom"
},
{
"path": "../rrweb-snapshot"
},
{
"path": "../types"
}
],
"exclude": [
Expand Down
18 changes: 13 additions & 5 deletions packages/web-extension/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"baseUrl": ".",
"module": "ESNext",
"target": "es2016",
"lib": ["DOM", "ESNext"],
"lib": [
"DOM",
"ESNext"
],
"strict": true,
"esModuleInterop": true,
"incremental": true,
Expand All @@ -15,17 +18,22 @@
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"~/*": ["src/*"]
"~/*": [
"src/*"
]
},
"jsx": "react-jsx"
},
"exclude": ["dist", "node_modules"],
"exclude": [
"dist",
"node_modules"
],
"references": [
{
"path": "../rrweb-player"
"path": "../rrweb"
},
{
"path": "../rrweb"
"path": "../rrweb-player"
},
{
"path": "../types"
Expand Down

0 comments on commit d5627da

Please sign in to comment.