diff --git a/.gitignore b/.gitignore index 5da118e8..c065df01 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ node_modules out dist build +apps/web/public/brand.json *.tsbuildinfo .turbo .env*.local diff --git a/apps/extension/tsconfig.json b/apps/extension/tsconfig.json index 0ed8bf07..33e2a044 100644 --- a/apps/extension/tsconfig.json +++ b/apps/extension/tsconfig.json @@ -6,28 +6,7 @@ "exclude": ["node_modules", ".output", "wxt.config.ts"], "references": [ { - "path": "../../packages/wallet" - }, - { - "path": "../../packages/utilities" - }, - { - "path": "../../packages/uniswap" - }, - { - "path": "../../packages/ui" - }, - { - "path": "../../packages/sessions" - }, - { - "path": "../../packages/notifications" - }, - { - "path": "../../packages/gating" - }, - { - "path": "../../packages/api" + "path": "../../pkgs/wallet" } ], "compilerOptions": { diff --git a/apps/mobile/tsconfig.json b/apps/mobile/tsconfig.json index 59614477..04a0aee7 100644 --- a/apps/mobile/tsconfig.json +++ b/apps/mobile/tsconfig.json @@ -1,35 +1,11 @@ { "$schema": "https://json.schemastore.org/tsconfig", "display": "Mobile App", - "extends": "../../config/tsconfig/expo.json", + "extends": "../../tsconfig.base.json", "exclude": [".storybook/storybook.requires.ts"], "references": [ { - "path": "../../packages/sessions" - }, - { - "path": "../../packages/notifications" - }, - { - "path": "../../packages/hashcash-native" - }, - { - "path": "../../packages/gating" - }, - { - "path": "../../packages/api" - }, - { - "path": "../../packages/wallet" - }, - { - "path": "../../packages/utilities" - }, - { - "path": "../../packages/ui" - }, - { - "path": "../../packages/uniswap" + "path": "../../pkgs/wallet" } ], "compilerOptions": { diff --git a/pkgs/wallet/tsconfig.json b/pkgs/wallet/tsconfig.json index f383bc37..95d519ba 100644 --- a/pkgs/wallet/tsconfig.json +++ b/pkgs/wallet/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../config/tsconfig/app.json", + "extends": "../../tsconfig.base.json", "include": [ "src/**/*.ts", "src/**/*.d.ts", @@ -7,33 +7,17 @@ "src/**/*.json", "env.d.ts" ], - "references": [ - { - "path": "../config" - }, - { - "path": "../utilities" - }, - { - "path": "../lx" - }, - { - "path": "../ui" - }, - { - "path": "../sessions" - }, - { - "path": "../gating" - }, - { - "path": "../api" - }, - { - "path": "../eslint-config" - } - ], + "exclude": ["node_modules", "**/*.test.ts", "**/*.test.tsx", "src/test/**"], "compilerOptions": { - "types": ["chrome", "jest"] + "moduleResolution": "Bundler", + "lib": ["dom", "dom.iterable", "esnext"], + "jsx": "react-jsx", + "resolveJsonModule": true, + "noEmit": true, + "skipLibCheck": true, + "types": [], + "paths": { + "src/*": ["./src/*"] + } } }