@ttoss/config 1.34.2 → 1.35.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/dist/esm/index.js +1 -1
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/tsconfig.json +3 -3
package/dist/esm/index.js
CHANGED
package/dist/index.d.mts
CHANGED
|
@@ -45,10 +45,10 @@ declare const tsupConfig: (config?: any, deepmergeConfig?: {
|
|
|
45
45
|
} | undefined) => any;
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
* `target` to `
|
|
49
|
-
* https://node.green/#
|
|
48
|
+
* `target` to `es2023` because Node.js 20 supports ES2023 features.
|
|
49
|
+
* https://node.green/#ES2023
|
|
50
50
|
*/
|
|
51
|
-
declare const target = "
|
|
51
|
+
declare const target = "es2023";
|
|
52
52
|
|
|
53
53
|
declare const typescriptConfig_target: typeof target;
|
|
54
54
|
declare namespace typescriptConfig {
|
package/dist/index.d.ts
CHANGED
|
@@ -45,10 +45,10 @@ declare const tsupConfig: (config?: any, deepmergeConfig?: {
|
|
|
45
45
|
} | undefined) => any;
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
* `target` to `
|
|
49
|
-
* https://node.green/#
|
|
48
|
+
* `target` to `es2023` because Node.js 20 supports ES2023 features.
|
|
49
|
+
* https://node.green/#ES2023
|
|
50
50
|
*/
|
|
51
|
-
declare const target = "
|
|
51
|
+
declare const target = "es2023";
|
|
52
52
|
|
|
53
53
|
declare const typescriptConfig_target: typeof target;
|
|
54
54
|
declare namespace typescriptConfig {
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"moduleResolution": "Bundler",
|
|
18
18
|
"module": "ESNext",
|
|
19
19
|
/**
|
|
20
|
-
* `target` to `
|
|
21
|
-
* https://node.green/#
|
|
20
|
+
* `target` to `es2023` because Node.js 20 supports ES2023 features.
|
|
21
|
+
* https://node.green/#ES2023
|
|
22
22
|
*/
|
|
23
|
-
"target": "
|
|
23
|
+
"target": "es2023",
|
|
24
24
|
"declaration": true,
|
|
25
25
|
"sourceMap": true,
|
|
26
26
|
"strict": true,
|