@orchestrator-ui/tsconfig 0.0.3

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.
@@ -0,0 +1,12 @@
1
+ $ tsup base.json nextjs.json tsconfig.json --format esm --dts
2
+ CLI Building entry: base.json, nextjs.json
3
+ CLI tsup v7.1.0
4
+ CLI Target: node16
5
+ ESM Build start
6
+ ESM dist\base.mjs 703.00 B
7
+ ESM dist\nextjs.mjs 699.00 B
8
+ ESM ⚡️ Build success in 28ms
9
+ DTS Build start
10
+ DTS ⚡️ Build success in 816ms
11
+ DTS dist\base.d.mts 693.00 B
12
+ DTS dist\nextjs.d.mts 674.00 B
package/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ # @orchestrator-ui/tsconfig
2
+
3
+ ## 0.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - c780503: Initial release
8
+
9
+ ## 0.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - 0cef169: Splitted WFO in separate packages
14
+
15
+ ## 0.0.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Converted tsconfig and eslint to standalone NPM package
package/base.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "$schema": "https://json.schemastore.org/tsconfig",
3
+ "display": "Default",
4
+ "compilerOptions": {
5
+ "jsx": "react-jsx",
6
+ "jsxImportSource": "@emotion/react",
7
+ "composite": false,
8
+ "declaration": true,
9
+ "declarationMap": true,
10
+ "esModuleInterop": true,
11
+ "forceConsistentCasingInFileNames": true,
12
+ "inlineSources": false,
13
+ "isolatedModules": true,
14
+ "moduleResolution": "node",
15
+ "noUnusedLocals": false,
16
+ "noUnusedParameters": false,
17
+ "preserveWatchOutput": true,
18
+ "skipLibCheck": true,
19
+ "strict": true
20
+ },
21
+ "exclude": ["node_modules"]
22
+ }
@@ -0,0 +1,30 @@
1
+ var $schema = "https://json.schemastore.org/tsconfig";
2
+ var display = "Default";
3
+ var compilerOptions = {
4
+ jsx: "react-jsx",
5
+ jsxImportSource: "@emotion/react",
6
+ composite: false,
7
+ declaration: true,
8
+ declarationMap: true,
9
+ esModuleInterop: true,
10
+ forceConsistentCasingInFileNames: true,
11
+ inlineSources: false,
12
+ isolatedModules: true,
13
+ moduleResolution: "node",
14
+ noUnusedLocals: false,
15
+ noUnusedParameters: false,
16
+ preserveWatchOutput: true,
17
+ skipLibCheck: true,
18
+ strict: true
19
+ };
20
+ var exclude = [
21
+ "node_modules"
22
+ ];
23
+ var base = {
24
+ $schema: $schema,
25
+ display: display,
26
+ compilerOptions: compilerOptions,
27
+ exclude: exclude
28
+ };
29
+
30
+ export { $schema, compilerOptions, base as default, display, exclude };
package/dist/base.mjs ADDED
@@ -0,0 +1,34 @@
1
+ // base.json
2
+ var $schema = "https://json.schemastore.org/tsconfig";
3
+ var display = "Default";
4
+ var compilerOptions = {
5
+ jsx: "react-jsx",
6
+ jsxImportSource: "@emotion/react",
7
+ composite: false,
8
+ declaration: true,
9
+ declarationMap: true,
10
+ esModuleInterop: true,
11
+ forceConsistentCasingInFileNames: true,
12
+ inlineSources: false,
13
+ isolatedModules: true,
14
+ moduleResolution: "node",
15
+ noUnusedLocals: false,
16
+ noUnusedParameters: false,
17
+ preserveWatchOutput: true,
18
+ skipLibCheck: true,
19
+ strict: true
20
+ };
21
+ var exclude = ["node_modules"];
22
+ var base_default = {
23
+ $schema,
24
+ display,
25
+ compilerOptions,
26
+ exclude
27
+ };
28
+ export {
29
+ $schema,
30
+ compilerOptions,
31
+ base_default as default,
32
+ display,
33
+ exclude
34
+ };
@@ -0,0 +1,39 @@
1
+ var $schema = "https://json.schemastore.org/tsconfig";
2
+ var display = "Next.js";
3
+ var compilerOptions = {
4
+ plugins: [
5
+ {
6
+ name: "next"
7
+ }
8
+ ],
9
+ allowJs: true,
10
+ declaration: false,
11
+ declarationMap: false,
12
+ incremental: true,
13
+ lib: [
14
+ "dom",
15
+ "dom.iterable",
16
+ "esnext"
17
+ ],
18
+ module: "esnext",
19
+ noEmit: true,
20
+ resolveJsonModule: true,
21
+ target: "es2015"
22
+ };
23
+ var include = [
24
+ "src",
25
+ "next-env.d.ts"
26
+ ];
27
+ var exclude = [
28
+ "node_modules"
29
+ ];
30
+ var nextjs = {
31
+ $schema: $schema,
32
+ display: display,
33
+ "extends": "./base.json",
34
+ compilerOptions: compilerOptions,
35
+ include: include,
36
+ exclude: exclude
37
+ };
38
+
39
+ export { $schema, compilerOptions, nextjs as default, display, exclude, include };
@@ -0,0 +1,35 @@
1
+ // nextjs.json
2
+ var $schema = "https://json.schemastore.org/tsconfig";
3
+ var display = "Next.js";
4
+ var extends2 = "./base.json";
5
+ var 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
+ var include = ["src", "next-env.d.ts"];
18
+ var exclude = ["node_modules"];
19
+ var nextjs_default = {
20
+ $schema,
21
+ display,
22
+ extends: extends2,
23
+ compilerOptions,
24
+ include,
25
+ exclude
26
+ };
27
+ export {
28
+ $schema,
29
+ compilerOptions,
30
+ nextjs_default as default,
31
+ display,
32
+ exclude,
33
+ extends2 as extends,
34
+ include
35
+ };
package/nextjs.json ADDED
@@ -0,0 +1,19 @@
1
+ {
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
+ }
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@orchestrator-ui/tsconfig",
3
+ "scripts": {
4
+ "build": "tsup base.json nextjs.json tsconfig.json --format esm --dts",
5
+ "dev": "yarn build -- --watch"
6
+ },
7
+ "main": "./dist/",
8
+ "version": "0.0.3",
9
+ "license": "MIT",
10
+ "publishConfig": {
11
+ "access": "public"
12
+ }
13
+ }
@@ -0,0 +1,11 @@
1
+ {
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
+ }