mirror of
https://github.com/pezkuwichain/pezkuwi-extension.git
synced 2026-06-13 10:31:05 +00:00
f123bbfacc
- Downgrade styled-components from v6.1.1 to v5.3.11 - Add @types/styled-components for v5 type definitions - Simplify styled.ts export (v5 uses default export) - Remove tsconfig skipLibCheck workaround (not needed with v5) - Add string-replace-loader dependency for webpack - Update @pezkuwi/dev to 0.85.4 (includes rollup config export fix) This fixes TS2742 declaration emit errors that prevented npm package builds while allowing Chrome/Firefox extension bundles.
19 lines
492 B
JSON
19 lines
492 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"baseUrl": "..",
|
|
"outDir": "./build",
|
|
"rootDir": "./src"
|
|
},
|
|
"exclude": [
|
|
"**/*.spec.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "../extension-base/tsconfig.build.json" },
|
|
{ "path": "../extension-chains/tsconfig.build.json" },
|
|
{ "path": "../extension-dapp/tsconfig.build.json" },
|
|
{ "path": "../extension-inject/tsconfig.build.json" },
|
|
{ "path": "../extension-mocks/tsconfig.build.json" }
|
|
]
|
|
}
|