mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-09 16:58:32 +01:00
chore: build:lib 3 connect deps to fix desktop app build
This commit is contained in:
@@ -4,11 +4,12 @@
|
||||
"private": true,
|
||||
"license": "See LICENSE.md in repo root",
|
||||
"sideEffects": false,
|
||||
"main": "src/index",
|
||||
"main": "lib/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "jest -c ../../jest.config.base.js",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "rimraf lib && yarn tsc --build ./tsconfig.lib.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/utils": "*"
|
||||
|
||||
8
packages/analytics/tsconfig.lib.json
Normal file
8
packages/analytics/tsconfig.lib.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"extends": "../../tsconfig.lib.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./lib",
|
||||
"esModuleInterop": false
|
||||
},
|
||||
"include": ["./src"]
|
||||
}
|
||||
@@ -4,10 +4,11 @@
|
||||
"private": true,
|
||||
"license": "See LICENSE.md in repo root",
|
||||
"sideEffects": false,
|
||||
"main": "src/index",
|
||||
"main": "lib/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "rimraf lib && yarn tsc --build ./tsconfig.lib.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@trezor/analytics": "*"
|
||||
|
||||
8
packages/connect-analytics/tsconfig.lib.json
Normal file
8
packages/connect-analytics/tsconfig.lib.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"extends": "../../tsconfig.lib.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./lib",
|
||||
"esModuleInterop": false
|
||||
},
|
||||
"include": ["./src"]
|
||||
}
|
||||
@@ -4,10 +4,14 @@
|
||||
"private": true,
|
||||
"license": "See LICENSE.md in repo root",
|
||||
"sideEffects": false,
|
||||
"main": "src/index",
|
||||
"main": "lib/index",
|
||||
"scripts": {
|
||||
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
|
||||
"test:unit": "jest -c ../../jest.config.base.js --passWithNoTests",
|
||||
"type-check": "tsc --build"
|
||||
"type-check": "tsc --build",
|
||||
"build:lib": "rimraf lib && yarn tsc --build ./tsconfig.lib.json"
|
||||
},
|
||||
"devDependencies": {
|
||||
"typescript": "4.7.4"
|
||||
}
|
||||
}
|
||||
|
||||
8
packages/device-utils/tsconfig.lib.json
Normal file
8
packages/device-utils/tsconfig.lib.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"extends": "../../tsconfig.lib.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "./lib",
|
||||
"esModuleInterop": false
|
||||
},
|
||||
"include": ["./src"]
|
||||
}
|
||||
Reference in New Issue
Block a user