@elliots/unplugin-typical 0.1.6 → 0.1.7
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/esbuild.d.mts +1 -1
- package/dist/farm.d.mts +1 -1
- package/dist/{index-BI1Rh2MC.d.mts → index-DmCN96cN.d.mts} +6 -0
- package/dist/index.d.mts +1 -1
- package/dist/rolldown.d.mts +1 -1
- package/dist/rollup.d.mts +1 -1
- package/dist/rspack.d.mts +1 -1
- package/dist/vite.d.mts +1 -1
- package/dist/webpack.d.mts +1 -1
- package/package.json +2 -2
package/dist/esbuild.d.mts
CHANGED
package/dist/farm.d.mts
CHANGED
|
@@ -18,6 +18,12 @@ interface TypicalConfig {
|
|
|
18
18
|
* Example: ["React.*", "Express.Request", "*.Event"]
|
|
19
19
|
*/
|
|
20
20
|
ignoreTypes?: string[];
|
|
21
|
+
/**
|
|
22
|
+
* Skip validation for DOM types (Document, Element, Node, etc.) and their subclasses.
|
|
23
|
+
* These types have complex Window intersections that typia cannot process.
|
|
24
|
+
* Default: true
|
|
25
|
+
*/
|
|
26
|
+
ignoreDOMTypes?: boolean;
|
|
21
27
|
}
|
|
22
28
|
//#endregion
|
|
23
29
|
//#region src/core/options.d.ts
|
package/dist/index.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { n as Options, t as Typical } from "./index-
|
|
1
|
+
import { n as Options, t as Typical } from "./index-DmCN96cN.mjs";
|
|
2
2
|
export { Options, Typical };
|
package/dist/rolldown.d.mts
CHANGED
package/dist/rollup.d.mts
CHANGED
package/dist/rspack.d.mts
CHANGED
package/dist/vite.d.mts
CHANGED
package/dist/webpack.d.mts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elliots/unplugin-typical",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.7",
|
|
5
5
|
"description": "Unplugin for typical - runtime safe TypeScript transformer",
|
|
6
6
|
"author": "Elliot Shepherd <elliot@jarofworms.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"access": "public"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@elliots/typical": "0.1.
|
|
60
|
+
"@elliots/typical": "0.1.7",
|
|
61
61
|
"unplugin": "^2.3.11"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|