diff --git a/packages/api/package.json b/packages/api/package.json index 0e4215de0f..5ad0114e0d 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -15,7 +15,7 @@ "scripts": { "build:app": "yarn workspace loot-core build:api", "build:crdt": "yarn workspace @actual-app/crdt build", - "build:node": "tsc --p tsconfig.dist.json && tsc-alias -p tsconfig.dist.json", + "build:node": "tsc --p tsconfig.json && tsc-alias -p tsconfig.json", "build:migrations": "cp migrations/*.sql dist/migrations", "build:default-db": "cp default-db.sqlite dist/", "build": "yarn run clean && yarn run build:app && yarn run build:node && yarn run build:migrations && yarn run build:default-db", diff --git a/packages/crdt/package.json b/packages/crdt/package.json index efd3fc55fc..6947e000cb 100644 --- a/packages/crdt/package.json +++ b/packages/crdt/package.json @@ -9,7 +9,7 @@ "dist" ], "scripts": { - "build:node": "tsc --p tsconfig.dist.json", + "build:node": "tsc --p tsconfig.json", "proto:generate": "./bin/generate-proto", "build": "rm -rf dist && yarn run build:node && cp src/proto/sync_pb.d.ts dist/src/proto/", "test": "vitest --globals" diff --git a/packages/desktop-electron/package.json b/packages/desktop-electron/package.json index 6d8ca71b2a..c83f59b566 100644 --- a/packages/desktop-electron/package.json +++ b/packages/desktop-electron/package.json @@ -8,7 +8,7 @@ "clean": "rm -rf dist", "update-client": "bin/update-client", "build": "yarn build:dist && electron-builder", - "build:dist": "tsc --p tsconfig.dist.json && yarn copy-static-assets", + "build:dist": "tsc --p tsconfig.json && yarn copy-static-assets", "copy-static-assets": "copyfiles --exclude 'build/**/*' **/*.html icons/**/* build", "watch": "yarn build:dist && cross-env ACTUAL_DOCUMENT_DIR=\"../../data\" ACTUAL_DATA_DIR=\"../../data\" electron .", "e2e": "npx playwright test"