@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.
- package/.turbo/turbo-build.log +9 -8
- package/CHANGELOG.md +6 -0
- package/base.json +3 -1
- package/dist/base.d.mts +5 -1
- package/dist/base.mjs +3 -1
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
|
|
2
|
+
> @orchestrator-ui/tsconfig@1.0.0 build
|
|
3
|
+
> tsup base.json nextjs.json tsconfig.json --format esm --dts
|
|
4
|
+
|
|
3
5
|
[34mCLI[39m Building entry: base.json, nextjs.json
|
|
4
|
-
[34mCLI[39m tsup
|
|
6
|
+
[34mCLI[39m tsup v8.0.2
|
|
5
7
|
[34mCLI[39m Target: node16
|
|
6
8
|
[34mESM[39m Build start
|
|
7
|
-
[32mESM[39m [1mdist/base.mjs [22m[
|
|
9
|
+
[32mESM[39m [1mdist/base.mjs [22m[32m766.00 B[39m
|
|
8
10
|
[32mESM[39m [1mdist/nextjs.mjs [22m[32m699.00 B[39m
|
|
9
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mESM[39m ⚡️ Build success in 25ms
|
|
10
12
|
[34mDTS[39m Build start
|
|
11
|
-
[32mDTS[39m ⚡️ Build success in
|
|
12
|
-
[32mDTS[39m [1mdist/base.d.mts [22m[
|
|
13
|
+
[32mDTS[39m ⚡️ Build success in 1581ms
|
|
14
|
+
[32mDTS[39m [1mdist/base.d.mts [22m[32m758.00 B[39m
|
|
13
15
|
[32mDTS[39m [1mdist/nextjs.d.mts [22m[32m674.00 B[39m
|
|
14
|
-
Done in 2.41s.
|
package/CHANGELOG.md
CHANGED
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": "
|
|
5
|
+
"dev": "npm run build -- --watch"
|
|
6
6
|
},
|
|
7
7
|
"main": "./dist/",
|
|
8
|
-
"version": "0.
|
|
8
|
+
"version": "1.0.0",
|
|
9
9
|
"license": "MIT",
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public"
|