@nx/express 23.2.0-beta.2 → 23.2.0-beta.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,6 +14,10 @@ export interface Schema {
14
14
  /** @deprecated use `swcJest` instead */
15
15
  babelJest?: boolean;
16
16
  js: boolean;
17
+ enableTypedLinting?: boolean;
18
+ /**
19
+ * @deprecated Use `enableTypedLinting` instead. This option will be removed in Nx v24.
20
+ */
17
21
  setParserOptionsProject?: boolean;
18
22
  addPlugin?: boolean;
19
23
  useProjectJson?: boolean;
@@ -69,11 +69,17 @@
69
69
  "description": "Generate JavaScript files rather than TypeScript files.",
70
70
  "default": false
71
71
  },
72
- "setParserOptionsProject": {
72
+ "enableTypedLinting": {
73
73
  "type": "boolean",
74
- "description": "Whether or not to configure the ESLint `parserOptions.project` option. We do not do this by default for lint performance reasons.",
74
+ "description": "Whether to enable typed linting. For flat configs, this configures the recommended `parserOptions.projectService` and `tsconfigRootDir`. For legacy `.eslintrc` configs, this configures `parserOptions.project`. We do not enable this by default for lint performance reasons.",
75
75
  "default": false
76
76
  },
77
+ "setParserOptionsProject": {
78
+ "type": "boolean",
79
+ "description": "Deprecated alias for `enableTypedLinting`.",
80
+ "default": false,
81
+ "x-deprecated": "Use `enableTypedLinting` instead. This option will be removed in Nx v24."
82
+ },
77
83
  "useProjectJson": {
78
84
  "type": "boolean",
79
85
  "description": "Use a `project.json` configuration file instead of inlining the Nx configuration in the `package.json` file."
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/express",
3
- "version": "23.2.0-beta.2",
3
+ "version": "23.2.0-beta.3",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Express contains executors and generators for allowing your workspace to create powerful Express Node applications and APIs.",
6
6
  "repository": {
@@ -41,9 +41,9 @@
41
41
  "dependencies": {
42
42
  "semver": "^7.6.3",
43
43
  "tslib": "^2.3.0",
44
- "@nx/devkit": "23.2.0-beta.2",
45
- "@nx/js": "23.2.0-beta.2",
46
- "@nx/node": "23.2.0-beta.2"
44
+ "@nx/devkit": "23.2.0-beta.3",
45
+ "@nx/js": "23.2.0-beta.3",
46
+ "@nx/node": "23.2.0-beta.3"
47
47
  },
48
48
  "peerDependencies": {
49
49
  "express": ">=4.0.0 <6.0.0"