@azure/arm-templatespecs 2.1.1-alpha.20250121.1 → 2.1.1-alpha.20250123.1

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 +2 -2
  2. package/tsconfig.json +15 -4
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "sdk-type": "mgmt",
4
4
  "author": "Microsoft Corporation",
5
5
  "description": "A generated SDK for TemplateSpecsClient.",
6
- "version": "2.1.1-alpha.20250121.1",
6
+ "version": "2.1.1-alpha.20250123.1",
7
7
  "engines": {
8
8
  "node": ">=18.0.0"
9
9
  },
@@ -64,7 +64,7 @@
64
64
  "types/*"
65
65
  ],
66
66
  "scripts": {
67
- "build": "npm run clean && tsc && dev-tool run bundle && npm run minify && dev-tool run vendored mkdirp ./review && npm run extract-api",
67
+ "build": "npm run clean && tsc && dev-tool run bundle && npm run minify && npm run extract-api",
68
68
  "build:browser": "echo skipped",
69
69
  "build:node": "echo skipped",
70
70
  "build:samples": "echo skipped.",
package/tsconfig.json CHANGED
@@ -9,14 +9,25 @@
9
9
  "esModuleInterop": true,
10
10
  "allowSyntheticDefaultImports": true,
11
11
  "forceConsistentCasingInFileNames": true,
12
- "lib": ["es6", "dom"],
12
+ "lib": [
13
+ "es6",
14
+ "dom"
15
+ ],
13
16
  "declaration": true,
14
17
  "outDir": "./dist-esm",
15
18
  "importHelpers": true,
16
19
  "paths": {
17
- "@azure/arm-templatespecs": ["./src/index"]
20
+ "@azure/arm-templatespecs": [
21
+ "./src/index"
22
+ ]
18
23
  }
19
24
  },
20
- "include": ["./src/**/*.ts", "./test/**/*.ts", "samples-dev/**/*.ts"],
21
- "exclude": ["node_modules"]
25
+ "include": [
26
+ "./src/**/*.ts",
27
+ "./test/**/*.ts",
28
+ "samples-dev/**/*.ts",
29
+ ],
30
+ "exclude": [
31
+ "node_modules"
32
+ ]
22
33
  }