feat: update package.json to remove lint-staged, add eslint configuration and dependencies

feat: add state management for recording in RecordeReplayPage component

refactor: remove bridge and storage services as they are no longer needed

chore: update tsconfig.json for improved type checking and module resolution

fix: update downloadHtml function to use eventWithTime type and improve formatting

fix: add error logging in formatWithZone function for better debugging
This commit is contained in:
雨霖铃
2026-01-31 18:00:01 +08:00
parent 88a612f9cf
commit 4213e70697
18 changed files with 3437 additions and 135 deletions
+13 -3
View File
@@ -4,6 +4,9 @@
/* --- --- */
"allowImportingTsExtensions": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"module": "ESNext", // 支持 import.meta
"moduleResolution": "Bundler", // 或者用 "Node"
/* --- 1. () --- */
// 开启所有严格检查,包括 noImplicitAny。
@@ -15,6 +18,8 @@
"noUnusedLocals": true,
// 函数参数没使用报错
"noUnusedParameters": true,
// 函数必须有返回值,防止遗漏 return
"noImplicitReturns": true,
// switch 语句没有 break 时报错
"noFallthroughCasesInSwitch": true,
@@ -31,7 +36,9 @@
// WXT 通常会自动处理,但在这里显式声明有助于 VS Code 智能提示。
"paths": {
"@/*": ["./entrypoints/*", "./components/*", "./utils/*", "./assets/*"]
}
},
"types": ["chrome", "webextension-polyfill"],
"noImplicitAny": false
},
// 确保包含你的源代码目录
"include": [
@@ -39,6 +46,9 @@
"components/**/*",
"utils/**/*",
"assets/**/*",
".wxt/types/**/*.ts"
]
"hooks/**/*",
".wxt/types/**/*.ts",
".wxt/types/*.d.ts"
],
"exclude": ["node_modules", ".wxt", "eslint.config.ts"]
}