@cimplify/cli 0.6.11 → 0.6.12
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/{add-5G7UZ6DA.mjs → add-UZRM3FSU.mjs} +1 -1
- package/dist/{chunk-SNDMYYOK.mjs → chunk-A2L5IV57.mjs} +1 -1
- package/dist/{chunk-KOJZB3S4.mjs → chunk-E7P6GL73.mjs} +4 -1
- package/dist/chunk-VOQJ7GYE.mjs +5707 -0
- package/dist/dispatcher.mjs +11 -9
- package/dist/{doctor-3UOTPOJ6.mjs → doctor-Q6DWYG4D.mjs} +2 -2
- package/dist/{explain-DXJ3R52F.mjs → explain-RA3PQCUF.mjs} +22 -1
- package/dist/inspect-CGYX4DDF.mjs +411 -0
- package/dist/{introspect-77SUZ5X5.mjs → introspect-HKNLBZ73.mjs} +2 -2
- package/dist/{list-QX7RM3P3.mjs → list-U67HVMX5.mjs} +1 -1
- package/dist/{update-UHKPFT6F.mjs → update-UT46Z6X4.mjs} +1 -1
- package/package.json +4 -1
- package/templates/storefront-auto/bun.lock +745 -6
- package/templates/storefront-auto/package.json +1 -1
- package/templates/storefront-auto/tsconfig.json +24 -6
- package/templates/storefront-bakery/bun.lock +1167 -0
- package/templates/storefront-bakery/package.json +1 -1
- package/templates/storefront-bakery/tsconfig.json +24 -6
- package/templates/storefront-fashion/bun.lock +747 -8
- package/templates/storefront-fashion/package.json +1 -1
- package/templates/storefront-fashion/tsconfig.json +24 -6
- package/templates/storefront-grocery/bun.lock +745 -6
- package/templates/storefront-grocery/package.json +1 -1
- package/templates/storefront-grocery/tsconfig.json +24 -6
- package/templates/storefront-pharmacy/bun.lock +745 -6
- package/templates/storefront-pharmacy/package.json +1 -1
- package/templates/storefront-pharmacy/tsconfig.json +24 -6
- package/templates/storefront-restaurant/bun.lock +745 -6
- package/templates/storefront-restaurant/package.json +1 -1
- package/templates/storefront-restaurant/tsconfig.json +24 -6
- package/templates/storefront-retail/bun.lock +745 -6
- package/templates/storefront-retail/package.json +1 -1
- package/templates/storefront-retail/tsconfig.json +24 -6
- package/templates/storefront-services/bun.lock +745 -6
- package/templates/storefront-services/package.json +1 -1
- package/templates/storefront-services/tsconfig.json +24 -6
- package/dist/chunk-OLZMA2TM.mjs +0 -5707
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compilerOptions": {
|
|
3
3
|
"target": "ES2022",
|
|
4
|
-
"lib": [
|
|
4
|
+
"lib": [
|
|
5
|
+
"dom",
|
|
6
|
+
"dom.iterable",
|
|
7
|
+
"esnext"
|
|
8
|
+
],
|
|
5
9
|
"allowJs": false,
|
|
6
10
|
"skipLibCheck": true,
|
|
7
11
|
"strict": true,
|
|
@@ -11,13 +15,27 @@
|
|
|
11
15
|
"moduleResolution": "bundler",
|
|
12
16
|
"resolveJsonModule": true,
|
|
13
17
|
"isolatedModules": true,
|
|
14
|
-
"jsx": "
|
|
18
|
+
"jsx": "react-jsx",
|
|
15
19
|
"incremental": true,
|
|
16
|
-
"plugins": [
|
|
20
|
+
"plugins": [
|
|
21
|
+
{
|
|
22
|
+
"name": "next"
|
|
23
|
+
}
|
|
24
|
+
],
|
|
17
25
|
"paths": {
|
|
18
|
-
"@/*": [
|
|
26
|
+
"@/*": [
|
|
27
|
+
"./*"
|
|
28
|
+
]
|
|
19
29
|
}
|
|
20
30
|
},
|
|
21
|
-
"include": [
|
|
22
|
-
|
|
31
|
+
"include": [
|
|
32
|
+
"next-env.d.ts",
|
|
33
|
+
"**/*.ts",
|
|
34
|
+
"**/*.tsx",
|
|
35
|
+
".next/types/**/*.ts",
|
|
36
|
+
".next/dev/types/**/*.ts"
|
|
37
|
+
],
|
|
38
|
+
"exclude": [
|
|
39
|
+
"node_modules"
|
|
40
|
+
]
|
|
23
41
|
}
|