2022-12-03 19:42:48 +00:00
|
|
|
{
|
|
|
|
"$schema": "./node_modules/nx/schemas/nx-schema.json",
|
|
|
|
"npmScope": "edge-bypass",
|
|
|
|
"tasksRunnerOptions": {
|
|
|
|
"default": {
|
|
|
|
"runner": "nx/tasks-runners/default",
|
|
|
|
"options": {
|
|
|
|
"cacheableOperations": ["build", "lint", "test", "e2e"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"targetDefaults": {
|
|
|
|
"build": {
|
|
|
|
"dependsOn": ["^build"],
|
|
|
|
"inputs": ["production", "^production"]
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"inputs": ["default", "^production", "{workspaceRoot}/jest.preset.js"]
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"inputs": ["default", "{workspaceRoot}/.eslintrc.json"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"namedInputs": {
|
|
|
|
"default": ["{projectRoot}/**/*", "sharedGlobals"],
|
|
|
|
"production": [
|
|
|
|
"default",
|
|
|
|
"!{projectRoot}/**/?(*.)+(spec|test).[jt]s?(x)?(.snap)",
|
|
|
|
"!{projectRoot}/tsconfig.spec.json",
|
|
|
|
"!{projectRoot}/jest.config.[jt]s",
|
|
|
|
"!{projectRoot}/.eslintrc.json"
|
|
|
|
],
|
2023-01-01 19:16:57 +00:00
|
|
|
"sharedGlobals": ["{workspaceRoot}/babel.config.json"]
|
2022-12-03 19:42:48 +00:00
|
|
|
},
|
2022-12-13 15:22:38 +00:00
|
|
|
"generators": {
|
|
|
|
"@nrwl/react": {
|
|
|
|
"application": {
|
|
|
|
"style": "css",
|
|
|
|
"linter": "eslint",
|
|
|
|
"bundler": "vite",
|
|
|
|
"babel": true
|
|
|
|
},
|
|
|
|
"component": {
|
|
|
|
"style": "css"
|
|
|
|
},
|
|
|
|
"library": {
|
|
|
|
"style": "css",
|
|
|
|
"linter": "eslint",
|
|
|
|
"unitTestRunner": "vitest"
|
|
|
|
}
|
|
|
|
}
|
2023-01-01 18:18:20 +00:00
|
|
|
},
|
2023-03-05 08:20:04 +00:00
|
|
|
"defaultProject": "cf-page",
|
|
|
|
"plugins": ["@nrwl/deno"]
|
2022-12-03 19:42:48 +00:00
|
|
|
}
|