@orchestrator-ui/tsconfig 0.1.2 → 1.0.0

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.
@@ -1,14 +1,15 @@
1
- yarn run v1.22.21
2
- $ tsup base.json nextjs.json tsconfig.json --format esm --dts
1
+
2
+ > @orchestrator-ui/tsconfig@1.0.0 build
3
+ > tsup base.json nextjs.json tsconfig.json --format esm --dts
4
+
3
5
  CLI Building entry: base.json, nextjs.json
4
- CLI tsup v7.2.0
6
+ CLI tsup v8.0.2
5
7
  CLI Target: node16
6
8
  ESM Build start
7
- ESM dist/base.mjs 730.00 B
9
+ ESM dist/base.mjs 766.00 B
8
10
  ESM dist/nextjs.mjs 699.00 B
9
- ESM ⚡️ Build success in 20ms
11
+ ESM ⚡️ Build success in 25ms
10
12
  DTS Build start
11
- DTS ⚡️ Build success in 1768ms
12
- DTS dist/base.d.mts 719.00 B
13
+ DTS ⚡️ Build success in 1581ms
14
+ DTS dist/base.d.mts 758.00 B
13
15
  DTS dist/nextjs.d.mts 674.00 B
14
- Done in 2.41s.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/tsconfig
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 507399b: R1 Release
8
+
3
9
  ## 0.1.2
4
10
 
5
11
  ### Patch Changes
package/base.json CHANGED
@@ -3,6 +3,7 @@
3
3
  "display": "Default",
4
4
  "compilerOptions": {
5
5
  "jsx": "react-jsx",
6
+ "lib": ["ES2019"],
6
7
  "jsxImportSource": "@emotion/react",
7
8
  "composite": false,
8
9
  "declaration": true,
@@ -17,7 +18,8 @@
17
18
  "preserveWatchOutput": true,
18
19
  "skipLibCheck": true,
19
20
  "strict": true,
20
- "resolveJsonModule": true
21
+ "resolveJsonModule": true,
22
+ "target": "ES6"
21
23
  },
22
24
  "exclude": ["node_modules"]
23
25
  }
package/dist/base.d.mts CHANGED
@@ -2,6 +2,9 @@ var $schema = "https://json.schemastore.org/tsconfig";
2
2
  var display = "Default";
3
3
  var compilerOptions = {
4
4
  jsx: "react-jsx",
5
+ lib: [
6
+ "ES2019"
7
+ ],
5
8
  jsxImportSource: "@emotion/react",
6
9
  composite: false,
7
10
  declaration: true,
@@ -16,7 +19,8 @@ var compilerOptions = {
16
19
  preserveWatchOutput: true,
17
20
  skipLibCheck: true,
18
21
  strict: true,
19
- resolveJsonModule: true
22
+ resolveJsonModule: true,
23
+ target: "ES6"
20
24
  };
21
25
  var exclude = [
22
26
  "node_modules"
package/dist/base.mjs CHANGED
@@ -3,6 +3,7 @@ var $schema = "https://json.schemastore.org/tsconfig";
3
3
  var display = "Default";
4
4
  var compilerOptions = {
5
5
  jsx: "react-jsx",
6
+ lib: ["ES2019"],
6
7
  jsxImportSource: "@emotion/react",
7
8
  composite: false,
8
9
  declaration: true,
@@ -17,7 +18,8 @@ var compilerOptions = {
17
18
  preserveWatchOutput: true,
18
19
  skipLibCheck: true,
19
20
  strict: true,
20
- resolveJsonModule: true
21
+ resolveJsonModule: true,
22
+ target: "ES6"
21
23
  };
22
24
  var exclude = ["node_modules"];
23
25
  var base_default = {
package/package.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "name": "@orchestrator-ui/tsconfig",
3
3
  "scripts": {
4
4
  "build": "tsup base.json nextjs.json tsconfig.json --format esm --dts",
5
- "dev": "yarn build -- --watch"
5
+ "dev": "npm run build -- --watch"
6
6
  },
7
7
  "main": "./dist/",
8
- "version": "0.1.2",
8
+ "version": "1.0.0",
9
9
  "license": "MIT",
10
10
  "publishConfig": {
11
11
  "access": "public"