@orchestrator-ui/tsconfig 0.0.3 → 0.1.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.
@@ -3,10 +3,10 @@ $ tsup base.json nextjs.json tsconfig.json --format esm --dts
3
3
  CLI tsup v7.1.0
4
4
  CLI Target: node16
5
5
  ESM Build start
6
- ESM dist\base.mjs 703.00 B
6
+ ESM dist\base.mjs 730.00 B
7
7
  ESM dist\nextjs.mjs 699.00 B
8
- ESM ⚡️ Build success in 28ms
8
+ ESM ⚡️ Build success in 37ms
9
9
  DTS Build start
10
- DTS ⚡️ Build success in 816ms
11
- DTS dist\base.d.mts 693.00 B
10
+ DTS ⚡️ Build success in 925ms
11
+ DTS dist\base.d.mts 719.00 B
12
12
  DTS dist\nextjs.d.mts 674.00 B
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/tsconfig
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 6c4cb21: Added translation setup and next-inl configuration. Translation strings are now available when using the useTranslations hook. For more on how to add translations refer to apps/wfo-ui/translations/README.md
8
+
3
9
  ## 0.0.3
4
10
 
5
11
  ### Patch Changes
package/base.json CHANGED
@@ -16,7 +16,8 @@
16
16
  "noUnusedParameters": false,
17
17
  "preserveWatchOutput": true,
18
18
  "skipLibCheck": true,
19
- "strict": true
19
+ "strict": true,
20
+ "resolveJsonModule": true
20
21
  },
21
22
  "exclude": ["node_modules"]
22
23
  }
package/dist/base.d.mts CHANGED
@@ -15,7 +15,8 @@ var compilerOptions = {
15
15
  noUnusedParameters: false,
16
16
  preserveWatchOutput: true,
17
17
  skipLibCheck: true,
18
- strict: true
18
+ strict: true,
19
+ resolveJsonModule: true
19
20
  };
20
21
  var exclude = [
21
22
  "node_modules"
package/dist/base.mjs CHANGED
@@ -16,7 +16,8 @@ var compilerOptions = {
16
16
  noUnusedParameters: false,
17
17
  preserveWatchOutput: true,
18
18
  skipLibCheck: true,
19
- strict: true
19
+ strict: true,
20
+ resolveJsonModule: true
20
21
  };
21
22
  var exclude = ["node_modules"];
22
23
  var base_default = {
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "dev": "yarn build -- --watch"
6
6
  },
7
7
  "main": "./dist/",
8
- "version": "0.0.3",
8
+ "version": "0.1.0",
9
9
  "license": "MIT",
10
10
  "publishConfig": {
11
11
  "access": "public"