From 167b7223ebf68ee2c1844e929e686705ad86bbe0 Mon Sep 17 00:00:00 2001 From: ioedeveloper Date: Tue, 28 Feb 2023 13:49:57 +0100 Subject: [PATCH] Added project.json to wallet-connect --- apps/wallet-connect/project.json | 60 ++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 apps/wallet-connect/project.json diff --git a/apps/wallet-connect/project.json b/apps/wallet-connect/project.json new file mode 100644 index 0000000000..725966fadb --- /dev/null +++ b/apps/wallet-connect/project.json @@ -0,0 +1,60 @@ +{ + "name": "wallet-connect", + "$schema": "../../node_modules/nx/schemas/project-schema.json", + "sourceRoot": "apps/wallet-connect/src", + "projectType": "application", + "implicitDependencies": [], + "targets": { + "build": { + "executor": "@nrwl/webpack:webpack", + "outputs": ["{options.outputPath}"], + "defaultConfiguration": "development", + "options": { + "compiler": "babel", + "outputPath": "dist/apps/wallet-connect", + "index": "apps/wallet-connect/src/index.html", + "baseHref": "/", + "main": "apps/wallet-connect/src/main.tsx", + "polyfills": "apps/wallet-connect/src/polyfills.ts", + "tsConfig": "apps/wallet-connect/tsconfig.app.json", + "assets": [ + "apps/wallet-connect/src/favicon.ico", + "apps/wallet-connect/src/assets" + ], + "styles": ["apps/wallet-connect/src/styles.css"], + "scripts": [], + "webpackConfig": "apps/wallet-connect/webpack.config.js" + }, + "configurations": { + "development": { + }, + "production": { + "fileReplacements": [ + { + "replace": "apps/wallet-connect/src/environments/environment.ts", + "with": "apps/wallet-connect/src/environments/environment.prod.ts" + } + ] + } + } + }, + "serve": { + "executor": "@nrwl/webpack:dev-server", + "defaultConfiguration": "development", + "options": { + "buildTarget": "wallet-connect:build", + "hmr": true + }, + "configurations": { + "development": { + "buildTarget": "wallet-connect:build:development" + }, + "production": { + "buildTarget": "wallet-connect:build:production" + } + } + } + }, + "tags": [] + } + \ No newline at end of file