@elementor/wp-lite-env 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- package/.github/workflows/release.yml +2 -2
- package/CHANGELOG.md +6 -0
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/tsconfig.json +6 -5
package/CHANGELOG.md
CHANGED
package/dist/package.json
CHANGED
package/package.json
CHANGED
package/tsconfig.json
CHANGED
@@ -1,19 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
3
|
-
"display": "Node
|
3
|
+
"display": "Node 22 + ESM + Strictest",
|
4
4
|
"compilerOptions": {
|
5
5
|
"lib": [
|
6
|
-
"
|
6
|
+
"ESNext"
|
7
7
|
],
|
8
8
|
"outDir": "dist",
|
9
|
-
"module": "
|
9
|
+
"module": "ESNext",
|
10
10
|
"target": "ESNext",
|
11
11
|
"declaration": true,
|
12
12
|
"declarationMap": true,
|
13
13
|
"esModuleInterop": true,
|
14
14
|
"skipLibCheck": true,
|
15
15
|
"forceConsistentCasingInFileNames": true,
|
16
|
-
"moduleResolution": "
|
16
|
+
"moduleResolution": "bundler",
|
17
17
|
"allowUnusedLabels": false,
|
18
18
|
"allowUnreachableCode": false,
|
19
19
|
"noFallthroughCasesInSwitch": true,
|
@@ -26,7 +26,8 @@
|
|
26
26
|
"noUnusedParameters": true,
|
27
27
|
"checkJs": false,
|
28
28
|
"allowJs": false,
|
29
|
-
"resolveJsonModule": true
|
29
|
+
"resolveJsonModule": true,
|
30
|
+
"allowSyntheticDefaultImports": true
|
30
31
|
},
|
31
32
|
"include": ["./package.json", "index.*", "src/**/*"],
|
32
33
|
}
|