@fictjs/babel-preset 0.2.0 → 0.2.2
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/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,7 @@ import { ConfigAPI, TransformOptions } from '@babel/core';
|
|
|
2
2
|
import { FictCompilerOptions } from '@fictjs/compiler';
|
|
3
3
|
export { FictCompilerOptions, createFictPlugin } from '@fictjs/compiler';
|
|
4
4
|
|
|
5
|
-
interface FictPresetOptions extends FictCompilerOptions {
|
|
5
|
+
interface FictPresetOptions extends Omit<FictCompilerOptions, 'typescript'> {
|
|
6
6
|
/**
|
|
7
7
|
* Enable TypeScript support.
|
|
8
8
|
* @default true
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { ConfigAPI, TransformOptions } from '@babel/core';
|
|
|
2
2
|
import { FictCompilerOptions } from '@fictjs/compiler';
|
|
3
3
|
export { FictCompilerOptions, createFictPlugin } from '@fictjs/compiler';
|
|
4
4
|
|
|
5
|
-
interface FictPresetOptions extends FictCompilerOptions {
|
|
5
|
+
interface FictPresetOptions extends Omit<FictCompilerOptions, 'typescript'> {
|
|
6
6
|
/**
|
|
7
7
|
* Enable TypeScript support.
|
|
8
8
|
* @default true
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fictjs/babel-preset",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Babel preset for Fict - includes TypeScript, JSX, and Fict compiler",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"@babel/plugin-syntax-jsx": "^7.27.1",
|
|
28
28
|
"@babel/preset-typescript": "^7.26.0",
|
|
29
|
-
"@fictjs/compiler": "0.2.
|
|
29
|
+
"@fictjs/compiler": "0.2.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@babel/core": "^7.26.0",
|