@codefast/typescript-config 0.3.1-canary.13 → 0.3.1-canary.14
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/CHANGELOG.md +10 -0
- package/base.json +3 -3
- package/nextjs.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @codefast/typescript-config
|
|
2
2
|
|
|
3
|
+
## 0.3.1-canary.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`df6ae17`](https://github.com/codefastlabs/codefast/commit/df6ae17f547a820614fb456c9556e61cbc8abd5e) Thanks [@thevuong](https://github.com/thevuong)! - chore: update package dependencies across multiple packages to ensure compatibility and access new features
|
|
8
|
+
|
|
9
|
+
- [`5ea0cf3`](https://github.com/codefastlabs/codefast/commit/5ea0cf3347bff9cfc58b66b65cc039d410d3729e) Thanks [@thevuong](https://github.com/thevuong)! - fix: correct types and default exports in package.json for various components
|
|
10
|
+
|
|
11
|
+
- [`bc6d38e`](https://github.com/codefastlabs/codefast/commit/bc6d38eb8f300426fdfd8a51ea394e25bce4583a) Thanks [@thevuong](https://github.com/thevuong)! - refactor: simplify command parameters and improve configuration handling in project and export commands
|
|
12
|
+
|
|
3
13
|
## 0.3.1-canary.13
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/base.json
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
"esModuleInterop": true,
|
|
7
7
|
"incremental": false,
|
|
8
8
|
"isolatedModules": true,
|
|
9
|
-
"lib": ["
|
|
10
|
-
"module": "
|
|
9
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
10
|
+
"module": "ESNext",
|
|
11
11
|
"moduleDetection": "force",
|
|
12
12
|
"moduleResolution": "bundler",
|
|
13
13
|
"noUnusedLocals": true,
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"resolveJsonModule": true,
|
|
16
16
|
"skipLibCheck": true,
|
|
17
17
|
"strict": true,
|
|
18
|
-
"target": "
|
|
18
|
+
"target": "ESNext"
|
|
19
19
|
},
|
|
20
20
|
"display": "Default"
|
|
21
21
|
}
|
package/nextjs.json
CHANGED