mirror of
https://github.com/status-im/status-web.git
synced 2026-08-31 06:11:10 +00:00
33 lines
721 B
JSON
33 lines
721 B
JSON
{
|
|
"extends": ["./.wxt/tsconfig.json"],
|
|
"compilerOptions": {
|
|
"allowImportingTsExtensions": true,
|
|
"jsx": "react-jsx",
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
// "paths": {
|
|
// "@status-im/wallet/*": ["../../packages/wallet/src/*"],
|
|
// },
|
|
},
|
|
"include": ["./**/*", "./.wxt/wxt.d.ts", "global.d.ts", "env.d.ts"],
|
|
"exclude": ["node_modules", ".output"],
|
|
"references": [
|
|
{
|
|
"path": "../../packages/wallet",
|
|
},
|
|
{
|
|
"path": "../../packages/colors",
|
|
},
|
|
{
|
|
"path": "../../packages/components",
|
|
},
|
|
{
|
|
"path": "../../packages/icons",
|
|
},
|
|
{
|
|
"path": "../../packages/ethereum-provider",
|
|
},
|
|
],
|
|
}
|