fix: use correct type
This commit is contained in:
@@ -125,6 +125,7 @@
|
|||||||
"postcss": "^8.4.47",
|
"postcss": "^8.4.47",
|
||||||
"prettier": "^3.3.3",
|
"prettier": "^3.3.3",
|
||||||
"react-dev-utils": "^12.0.1",
|
"react-dev-utils": "^12.0.1",
|
||||||
|
"rollup-plugin-node-builtins": "^2.1.2",
|
||||||
"semantic-release": "^24.1.2",
|
"semantic-release": "^24.1.2",
|
||||||
"storybook": "^8.3.5",
|
"storybook": "^8.3.5",
|
||||||
"typescript": "^5.6.3",
|
"typescript": "^5.6.3",
|
||||||
@@ -137,11 +138,10 @@
|
|||||||
},
|
},
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"patchedDependencies": {
|
"patchedDependencies": {
|
||||||
"@crxjs/vite-plugin@2.0.0-beta.21": "patches/@crxjs__vite-plugin@2.0.0-beta.21.patch",
|
"@crxjs/vite-plugin@2.0.0-beta.21": "patches/@crxjs__vite-plugin@2.0.0-beta.21.patch"
|
||||||
"@unocss/vite": "patches/@unocss__vite.patch"
|
|
||||||
},
|
},
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"es-module-lexer": "^1.5.4"
|
"es-module-lexer": "^1.5.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
658
pnpm-lock.yaml
generated
658
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@@ -23,7 +23,7 @@ type ContributorStats = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
type ContributorUser = {
|
type ContributorUser = {
|
||||||
name: string;
|
name: string | undefined;
|
||||||
};
|
};
|
||||||
|
|
||||||
type FetchResult<T> = {
|
type FetchResult<T> = {
|
||||||
|
|||||||
@@ -171,6 +171,7 @@ export default defineConfig({
|
|||||||
'@shared': resolve(root, 'shared'),
|
'@shared': resolve(root, 'shared'),
|
||||||
'@background': resolve(pagesDir, 'background'),
|
'@background': resolve(pagesDir, 'background'),
|
||||||
'@views': resolve(root, 'views'),
|
'@views': resolve(root, 'views'),
|
||||||
|
'fs': resolve(__dirname, 'node_modules/.pnpm/rollup-plugin-node-builtins@2.1.2/node_modules/rollup-plugin-node-builtins/src/index.js')
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
server: {
|
server: {
|
||||||
|
|||||||
Reference in New Issue
Block a user