@nextsparkjs/core 0.1.0-beta.25 → 0.1.0-beta.27

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "generated": "2026-01-08T03:14:17.314Z",
2
+ "generated": "2026-01-08T03:33:34.736Z",
3
3
  "totalClasses": 999,
4
4
  "classes": [
5
5
  "''",
@@ -61,9 +61,10 @@ module.exports = {
61
61
  ],
62
62
 
63
63
  // Transform configuration
64
+ // Use tsconfig.jest.json for JSX support (jsx: "react-jsx" instead of "preserve")
64
65
  transform: {
65
66
  '^.+\\.(ts|tsx)$': ['ts-jest', {
66
- tsconfig: path.join(projectRoot, 'tsconfig.json'),
67
+ tsconfig: path.join(themeTestsRoot, 'tsconfig.jest.json'),
67
68
  }],
68
69
  },
69
70
 
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "../../../../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "jsx": "react-jsx",
5
+ "esModuleInterop": true,
6
+ "allowSyntheticDefaultImports": true
7
+ }
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nextsparkjs/core",
3
- "version": "0.1.0-beta.25",
3
+ "version": "0.1.0-beta.27",
4
4
  "description": "NextSpark - The complete SaaS framework for Next.js",
5
5
  "license": "MIT",
6
6
  "author": "NextSpark <hello@nextspark.dev>",
@@ -61,9 +61,10 @@ module.exports = {
61
61
  ],
62
62
 
63
63
  // Transform configuration
64
+ // Use tsconfig.jest.json for JSX support (jsx: "react-jsx" instead of "preserve")
64
65
  transform: {
65
66
  '^.+\\.(ts|tsx)$': ['ts-jest', {
66
- tsconfig: path.join(projectRoot, 'tsconfig.json'),
67
+ tsconfig: path.join(themeTestsRoot, 'tsconfig.jest.json'),
67
68
  }],
68
69
  },
69
70
 
@@ -0,0 +1,8 @@
1
+ {
2
+ "extends": "../../../../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "jsx": "react-jsx",
5
+ "esModuleInterop": true,
6
+ "allowSyntheticDefaultImports": true
7
+ }
8
+ }