diff --git a/nx.json b/nx.json new file mode 100644 index 000000000..92908bb5a --- /dev/null +++ b/nx.json @@ -0,0 +1,29 @@ +{ + "tasksRunnerOptions": { + "default": { + "runner": "nx/tasks-runners/default", + "options": { + "cacheableOperations": [ + "build", + "compile", + "test" + ] + } + } + }, + "targetDefaults": { + "build": { + "dependsOn": [ + "^build" + ], + "outputs": [ + "{projectRoot}/lib" + ] + }, + "compile": { + "outputs": [ + "{projectRoot}/lib" + ] + } + } +}