@orchestrator-ui/tsconfig 1.3.0 → 1.4.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 +6 -6
- package/CHANGELOG.md +12 -0
- package/base.json +21 -23
- package/dist/base.d.mts +6 -8
- package/dist/base.mjs +4 -6
- package/nextjs.json +17 -17
- package/package.json +33 -33
- package/react-library.json +9 -9
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/tsconfig@1.
|
|
2
|
+
> @orchestrator-ui/tsconfig@1.4.0 build
|
|
3
3
|
> tsup base.json nextjs.json tsconfig.json --format esm --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: base.json, nextjs.json
|
|
6
|
-
[34mCLI[39m tsup v8.5.
|
|
6
|
+
[34mCLI[39m tsup v8.5.1
|
|
7
7
|
[34mCLI[39m Target: node16
|
|
8
8
|
[34mESM[39m Build start
|
|
9
|
-
[32mESM[39m [1mdist/base.mjs [22m[
|
|
9
|
+
[32mESM[39m [1mdist/base.mjs [22m[32m712.00 B[39m
|
|
10
10
|
[32mESM[39m [1mdist/nextjs.mjs [22m[32m699.00 B[39m
|
|
11
|
-
[32mESM[39m ⚡️ Build success in
|
|
11
|
+
[32mESM[39m ⚡️ Build success in 19ms
|
|
12
12
|
[34mDTS[39m Build start
|
|
13
|
-
[32mDTS[39m ⚡️ Build success in
|
|
14
|
-
[32mDTS[39m [1mdist/base.d.mts [22m[
|
|
13
|
+
[32mDTS[39m ⚡️ Build success in 1255ms
|
|
14
|
+
[32mDTS[39m [1mdist/base.d.mts [22m[32m706.00 B[39m
|
|
15
15
|
[32mDTS[39m [1mdist/nextjs.d.mts [22m[32m674.00 B[39m
|
package/CHANGELOG.md
CHANGED
package/base.json
CHANGED
|
@@ -1,25 +1,23 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
},
|
|
24
|
-
"exclude": ["node_modules"]
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "Default",
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"composite": false,
|
|
6
|
+
"declaration": true,
|
|
7
|
+
"declarationMap": true,
|
|
8
|
+
"esModuleInterop": true,
|
|
9
|
+
"forceConsistentCasingInFileNames": true,
|
|
10
|
+
"inlineSources": false,
|
|
11
|
+
"isolatedModules": true,
|
|
12
|
+
"jsx": "react-jsx",
|
|
13
|
+
"jsxImportSource": "@emotion/react",
|
|
14
|
+
"lib": ["ES2019"],
|
|
15
|
+
"moduleResolution": "node",
|
|
16
|
+
"preserveWatchOutput": true,
|
|
17
|
+
"resolveJsonModule": true,
|
|
18
|
+
"skipLibCheck": true,
|
|
19
|
+
"strict": true,
|
|
20
|
+
"target": "ES6"
|
|
21
|
+
},
|
|
22
|
+
"exclude": ["node_modules"]
|
|
25
23
|
}
|
package/dist/base.d.mts
CHANGED
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
var $schema = "https://json.schemastore.org/tsconfig";
|
|
2
2
|
var display = "Default";
|
|
3
3
|
var compilerOptions = {
|
|
4
|
-
jsx: "react-jsx",
|
|
5
|
-
lib: [
|
|
6
|
-
"ES2019"
|
|
7
|
-
],
|
|
8
|
-
jsxImportSource: "@emotion/react",
|
|
9
4
|
composite: false,
|
|
10
5
|
declaration: true,
|
|
11
6
|
declarationMap: true,
|
|
@@ -13,13 +8,16 @@ var compilerOptions = {
|
|
|
13
8
|
forceConsistentCasingInFileNames: true,
|
|
14
9
|
inlineSources: false,
|
|
15
10
|
isolatedModules: true,
|
|
11
|
+
jsx: "react-jsx",
|
|
12
|
+
jsxImportSource: "@emotion/react",
|
|
13
|
+
lib: [
|
|
14
|
+
"ES2019"
|
|
15
|
+
],
|
|
16
16
|
moduleResolution: "node",
|
|
17
|
-
noUnusedLocals: false,
|
|
18
|
-
noUnusedParameters: false,
|
|
19
17
|
preserveWatchOutput: true,
|
|
18
|
+
resolveJsonModule: true,
|
|
20
19
|
skipLibCheck: true,
|
|
21
20
|
strict: true,
|
|
22
|
-
resolveJsonModule: true,
|
|
23
21
|
target: "ES6"
|
|
24
22
|
};
|
|
25
23
|
var exclude = [
|
package/dist/base.mjs
CHANGED
|
@@ -2,9 +2,6 @@
|
|
|
2
2
|
var $schema = "https://json.schemastore.org/tsconfig";
|
|
3
3
|
var display = "Default";
|
|
4
4
|
var compilerOptions = {
|
|
5
|
-
jsx: "react-jsx",
|
|
6
|
-
lib: ["ES2019"],
|
|
7
|
-
jsxImportSource: "@emotion/react",
|
|
8
5
|
composite: false,
|
|
9
6
|
declaration: true,
|
|
10
7
|
declarationMap: true,
|
|
@@ -12,13 +9,14 @@ var compilerOptions = {
|
|
|
12
9
|
forceConsistentCasingInFileNames: true,
|
|
13
10
|
inlineSources: false,
|
|
14
11
|
isolatedModules: true,
|
|
12
|
+
jsx: "react-jsx",
|
|
13
|
+
jsxImportSource: "@emotion/react",
|
|
14
|
+
lib: ["ES2019"],
|
|
15
15
|
moduleResolution: "node",
|
|
16
|
-
noUnusedLocals: false,
|
|
17
|
-
noUnusedParameters: false,
|
|
18
16
|
preserveWatchOutput: true,
|
|
17
|
+
resolveJsonModule: true,
|
|
19
18
|
skipLibCheck: true,
|
|
20
19
|
strict: true,
|
|
21
|
-
resolveJsonModule: true,
|
|
22
20
|
target: "ES6"
|
|
23
21
|
};
|
|
24
22
|
var exclude = ["node_modules"];
|
package/nextjs.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "Next.js",
|
|
4
|
+
"extends": "./base.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"plugins": [{ "name": "next" }],
|
|
7
|
+
"allowJs": true,
|
|
8
|
+
"declaration": false,
|
|
9
|
+
"declarationMap": false,
|
|
10
|
+
"incremental": true,
|
|
11
|
+
"lib": ["dom", "dom.iterable", "esnext"],
|
|
12
|
+
"module": "esnext",
|
|
13
|
+
"noEmit": true,
|
|
14
|
+
"resolveJsonModule": true,
|
|
15
|
+
"target": "es2015"
|
|
16
|
+
},
|
|
17
|
+
"include": ["src", "next-env.d.ts"],
|
|
18
|
+
"exclude": ["node_modules"]
|
|
19
19
|
}
|
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
2
|
+
"name": "@orchestrator-ui/tsconfig",
|
|
3
|
+
"description": "Contains the tsconfig configuration used in the Workflow orchestrator frontend projects",
|
|
4
|
+
"author": {
|
|
5
|
+
"name": "Workflow Orchestrator Programme",
|
|
6
|
+
"email": "workfloworchestrator.board@commonsconservancy.org",
|
|
7
|
+
"url": "https://www.workfloworchestrator.org"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/workfloworchestrator/orchestrator-ui-library.git"
|
|
12
|
+
},
|
|
13
|
+
"homepage": "https://www.workfloworchestrator.org",
|
|
14
|
+
"keywords": [
|
|
15
|
+
"orchestrator",
|
|
16
|
+
"workflow",
|
|
17
|
+
"workflow orchestrator",
|
|
18
|
+
"typescript",
|
|
19
|
+
"tsconfig"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup base.json nextjs.json tsconfig.json --format esm --dts",
|
|
23
|
+
"dev": "npm run build -- --watch"
|
|
24
|
+
},
|
|
25
|
+
"main": "./dist/",
|
|
26
|
+
"version": "1.4.0",
|
|
27
|
+
"license": "Apache-2.0",
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public",
|
|
30
|
+
"provenance": true
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"tsup": "^8.5.0"
|
|
34
|
+
}
|
|
35
35
|
}
|
package/react-library.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
+
"display": "React Library",
|
|
4
|
+
"extends": "./base.json",
|
|
5
|
+
"compilerOptions": {
|
|
6
|
+
"jsx": "react-jsx",
|
|
7
|
+
"lib": ["ES2015", "DOM"],
|
|
8
|
+
"module": "ESNext",
|
|
9
|
+
"target": "es6"
|
|
10
|
+
}
|
|
11
11
|
}
|