mirror of
https://github.com/luxfi/wallet.git
synced 2026-07-27 03:37:41 +00:00
fix: remove nx prepare/postinstall, fix @l.x/websocket, wallet web builds
- pkgs/lx, apps/extension: nx prepare removed - apps/extension: postinstall removed - @l.x/websocket ref removed (doesn't exist) - pkgs/api: prepare removed - Trailing comma JSON fixes - pnpm install succeeds, wallet-web builds (Next.js static)
This commit is contained in:
@@ -109,8 +109,6 @@
|
||||
"lint:eslint:fix": "nx lint:eslint:fix extension",
|
||||
"lint": "nx lint extension",
|
||||
"lint:fix": "nx lint:fix extension",
|
||||
"postinstall": "nx postinstall extension",
|
||||
"prepare": "nx prepare extension",
|
||||
"snapshots": "nx snapshots extension",
|
||||
"start": "nx start extension",
|
||||
"start:absolute": "nx start:absolute extension",
|
||||
@@ -141,4 +139,4 @@
|
||||
"nx": {
|
||||
"includedScripts": []
|
||||
}
|
||||
}
|
||||
}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
/// <reference types="next" />
|
||||
/// <reference types="next/image-types/global" />
|
||||
/// <reference path="./.next/types/routes.d.ts" />
|
||||
|
||||
// NOTE: This file should not be edited
|
||||
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "ES2017",
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"esnext"
|
||||
],
|
||||
"allowJs": true,
|
||||
"skipLibCheck": true,
|
||||
"strict": false,
|
||||
"noEmit": true,
|
||||
"incremental": true,
|
||||
"module": "esnext",
|
||||
"esModuleInterop": true,
|
||||
"moduleResolution": "node",
|
||||
"resolveJsonModule": true,
|
||||
"isolatedModules": true,
|
||||
"jsx": "preserve",
|
||||
"plugins": [
|
||||
{
|
||||
"name": "next"
|
||||
}
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"next-env.d.ts",
|
||||
".next/types/**/*.ts",
|
||||
"**/*.ts",
|
||||
"**/*.tsx"
|
||||
],
|
||||
"exclude": [
|
||||
"node_modules"
|
||||
]
|
||||
}
|
||||
@@ -10,7 +10,6 @@
|
||||
"lint:fix": "nx lint:fix api",
|
||||
"typecheck": "nx typecheck api",
|
||||
"typecheck:tsgo": "nx typecheck:tsgo api",
|
||||
"prepare": "nx prepare api",
|
||||
"test": "nx test api",
|
||||
"graphql:generate": "nx graphql:generate api",
|
||||
"graphql:schema": "nx graphql:schema api",
|
||||
@@ -67,4 +66,4 @@
|
||||
"main": "src/index.ts",
|
||||
"private": false,
|
||||
"sideEffects": false
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,6 @@
|
||||
"name": "@l.x/lx",
|
||||
"version": "1.0.8",
|
||||
"scripts": {
|
||||
"prepare": "nx prepare @l.x/lx",
|
||||
"build": "nx build @l.x/lx",
|
||||
"contracts:compile:abi": "nx contracts:compile:abi @l.x/lx",
|
||||
"contracts:compile:v3": "nx contracts:compile:v3 @l.x/lx",
|
||||
@@ -163,4 +162,4 @@
|
||||
"sideEffects": [
|
||||
"*.css"
|
||||
]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user