@orchestrator-ui/tsconfig 0.1.0 → 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,12 +1,15 @@
1
- $ 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
+
2
5
  CLI Building entry: base.json, nextjs.json
3
- CLI tsup v7.1.0
6
+ CLI tsup v8.0.2
4
7
  CLI Target: node16
5
8
  ESM Build start
6
- ESM dist\base.mjs 730.00 B
7
- ESM dist\nextjs.mjs 699.00 B
8
- ESM ⚡️ Build success in 37ms
9
+ ESM dist/base.mjs 766.00 B
10
+ ESM dist/nextjs.mjs 699.00 B
11
+ ESM ⚡️ Build success in 25ms
9
12
  DTS Build start
10
- DTS ⚡️ Build success in 925ms
11
- DTS dist\base.d.mts 719.00 B
12
- DTS dist\nextjs.d.mts 674.00 B
13
+ DTS ⚡️ Build success in 1581ms
14
+ DTS dist/base.d.mts 758.00 B
15
+ DTS dist/nextjs.d.mts 674.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @orchestrator-ui/tsconfig
2
2
 
3
+ ## 1.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - 507399b: R1 Release
8
+
9
+ ## 0.1.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 6597ac1: Test release after adding absolute imports (issue 414)
14
+
15
+ ## 0.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - 6d680f6: Test release before adding absolute imports (issue 414)
20
+
3
21
  ## 0.1.0
4
22
 
5
23
  ### Minor 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.0",
8
+ "version": "1.0.0",
9
9
  "license": "MIT",
10
10
  "publishConfig": {
11
11
  "access": "public"