@zetavg/babel-config 0.0.5-pre.1 → 0.0.5-pre.4

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.
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Babel configuration for CommonJS output.
3
+ * @type {import('@babel/core').ConfigFunction}
4
+ */
5
+ export default function _default(): {
6
+ plugins: any[];
7
+ };
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Babel configuration for ES Module output.
3
+ * @type {import('@babel/core').ConfigFunction}
4
+ */
5
+ export default function _default(): {
6
+ plugins: any[][];
7
+ };
@@ -0,0 +1,3 @@
1
+ export { default as cjs } from "./cjs.js";
2
+ export { default as esm } from "./esm.js";
3
+ export { default as resolveTsconfigPaths } from "./resolve-tsconfig-paths.js";
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Babel configuration that resolves TypeScript paths based on the `tsconfig.json` file.
3
+ * @type {import('@babel/core').ConfigFunction}
4
+ */
5
+ export default function _default(): {
6
+ plugins: any[][];
7
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: any[];
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as DEFAULT_EXTENSIONS } from "./DEFAULT_EXTENSIONS.js";
@@ -0,0 +1,2 @@
1
+ declare const _default: string[];
2
+ export default _default;
@@ -0,0 +1 @@
1
+ export { default as testFiles } from "./ignore-test-files.js";
@@ -0,0 +1,4 @@
1
+ import * as constants from './constants/index.js';
2
+ import * as ignores from './ignores/index.js';
3
+ import * as presets from './presets/index.js';
4
+ export { constants, ignores, presets };
@@ -0,0 +1,2 @@
1
+ export { default as package } from "./package.js";
2
+ export { _package as package };
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Babel configuration for dual module package builds.
3
+ * @type {import('@babel/core').ConfigFunction}
4
+ */
5
+ export default function _default(api: any): {
6
+ presets: any[];
7
+ sourceMaps: boolean;
8
+ };
package/package.json CHANGED
@@ -38,12 +38,12 @@
38
38
  "tsconfig-paths": "^4"
39
39
  },
40
40
  "devDependencies": {
41
- "@zetavg/eslint-config": "^0.0.5-pre.1",
42
- "@zetavg/prettier-config": "^0.0.5-pre.1",
43
- "@zetavg/tsconfig": "^0.0.5-pre.1",
41
+ "@zetavg/eslint-config": "^0.0.5-pre.4",
42
+ "@zetavg/prettier-config": "^0.0.5-pre.4",
43
+ "@zetavg/tsconfig": "^0.0.5-pre.4",
44
44
  "eslint": "^10",
45
45
  "prettier": "^3",
46
46
  "typescript": "~5.8"
47
47
  },
48
- "version": "0.0.5-pre.1"
48
+ "version": "0.0.5-pre.4"
49
49
  }
package/tsconfig.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "@zetavg/tsconfig",
3
- "include": ["**/*.js"],
4
- "compilerOptions": {
5
- "allowJs": true,
6
- "declaration": true,
7
- "outDir": "dist/types",
8
- "emitDeclarationOnly": true
9
- }
10
- }