diff --git a/.prettierignore b/.prettierignore index 7da90e1..15c9abc 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,2 +1,5 @@ /node_modules *.md + +/.nx/cache +/.nx/workspace-data \ No newline at end of file diff --git a/nx.json b/nx.json index fe6f461..f077751 100644 --- a/nx.json +++ b/nx.json @@ -1,15 +1,20 @@ { "targetDefaults": { "build": { - "dependsOn": ["^build"] + "dependsOn": ["^build"], + "cache": true }, "test": { - "inputs": ["default", "^default"] + "inputs": ["default", "^default"], + "cache": true }, "@nx/vite:build": { "cache": true, "dependsOn": ["^build"], "inputs": ["default", "^default"] + }, + "lint": { + "cache": true } }, "workspaceLayout": {