@ws-test-realm/devkit 0.3.4 → 0.5.0-ng17

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.
Files changed (2) hide show
  1. package/package.json +13 -13
  2. package/tsconfig.base.json +6 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ws-test-realm/devkit",
3
- "version": "0.3.4",
4
- "description": "Build-time toolchain BOM + shared dev configs for ws-admin module workspaces. Declares the Angular CLI, builders, ng-packagr, TypeScript, Module Federation plugin, and prettier/husky/pretty-quick as peerDependencies so they install at the workspace top-level (where Angular CLI resolves them). Ships a canonical prettier.config.js, tsconfig.base.json, and ws-pre-commit hook bin so workspaces consume them by reference and stay in sync with the host. Pairs with @wiresphere/shared (runtime BOM + share map). Requires npm 7+ for peerDep auto-install.",
3
+ "version": "0.5.0-ng17",
4
+ "description": "Build-time toolchain BOM + shared dev configs for ws-admin module workspaces. Declares the Angular CLI, builders, ng-packagr, TypeScript and the native-federation plugin as peerDependencies so they install at the workspace top-level. Ships a canonical prettier.config.js, tsconfig.base.json, and ws-pre-commit hook bin. Pairs with @wiresphere/shared (runtime BOM).",
5
5
  "license": "Artistic-2.0",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -15,18 +15,18 @@
15
15
  "tsconfig.base.json"
16
16
  ],
17
17
  "engines": {
18
- "node": "16.14.2",
19
- "npm": "9.9.4"
18
+ "node": ">=18.13.0",
19
+ "npm": ">=9.5.0"
20
20
  },
21
21
  "peerDependencies": {
22
- "@angular-architects/module-federation": "^12.5.3",
23
- "@angular-devkit/build-angular": "12.2.18",
24
- "@angular/cli": "12.2.18",
25
- "@angular/compiler-cli": "12.2.17",
26
- "husky": "^4.2.5",
27
- "ng-packagr": "12.2.7",
28
- "prettier": "2.5.1",
29
- "pretty-quick": "3.0.2",
30
- "typescript": "~4.3.5"
22
+ "@angular-architects/native-federation": "^17.0.0",
23
+ "@angular-devkit/build-angular": "17.3.12",
24
+ "@angular/cli": "17.3.12",
25
+ "@angular/compiler-cli": "17.3.12",
26
+ "husky": "^9.0.0",
27
+ "ng-packagr": "^17.3.0",
28
+ "prettier": "^3.0.0",
29
+ "pretty-quick": "^4.0.0",
30
+ "typescript": "~5.2.2"
31
31
  }
32
32
  }
@@ -8,15 +8,16 @@
8
8
  "noFallthroughCasesInSwitch": true,
9
9
  "sourceMap": true,
10
10
  "declaration": false,
11
- "downlevelIteration": true,
12
11
  "experimentalDecorators": true,
13
- "moduleResolution": "node",
12
+ "moduleResolution": "bundler",
14
13
  "importHelpers": true,
15
14
  "allowSyntheticDefaultImports": true,
16
- "target": "es2017",
17
- "module": "es2020",
15
+ "esModuleInterop": true,
16
+ "useDefineForClassFields": false,
17
+ "target": "es2022",
18
+ "module": "es2022",
18
19
  "lib": [
19
- "es2018",
20
+ "es2022",
20
21
  "dom"
21
22
  ]
22
23
  },