From 8f45f4b950a3fe441aef4a2b58844757725c583d Mon Sep 17 00:00:00 2001 From: jaxoncreed Date: Thu, 31 Aug 2023 16:47:15 -0400 Subject: [PATCH] Enabled nx --- nx.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 nx.json diff --git a/nx.json b/nx.json new file mode 100644 index 0000000..9ed4830 --- /dev/null +++ b/nx.json @@ -0,0 +1,28 @@ +{ + "tasksRunnerOptions": { + "default": { + "runner": "nx/tasks-runners/default", + "options": { + "cacheableOperations": [ + "build", + "test" + ] + } + } + }, + "targetDefaults": { + "build": { + "dependsOn": [ + "^build" + ], + "outputs": [ + "{projectRoot}/dist" + ] + }, + "test": { + "outputs": [ + "{projectRoot}/coverage" + ] + } + } +}