nitrostack 1.0.2 → 1.0.3

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 CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.3] - 2025-10-27
11
+
12
+ ### Fixed
13
+ - **Critical**: Fixed Studio TypeScript path resolution in Next.js webpack
14
+ - Changed `moduleResolution` from `"bundler"` to `"node"` in `src/studio/tsconfig.json`
15
+ - Added `"baseUrl": "."` to enable proper `@/*` path mapping
16
+ - Resolves "Module not found: Can't resolve '@/lib/store'" error when running `nitrostack dev`
17
+
10
18
  ## [1.0.2] - 2025-10-27
11
19
 
12
20
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nitrostack",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "NitroStack - Build powerful MCP servers with TypeScript",
5
5
  "type": "module",
6
6
  "main": "dist/core/index.js",
@@ -12,7 +12,7 @@
12
12
  "noEmit": true,
13
13
  "esModuleInterop": true,
14
14
  "module": "esnext",
15
- "moduleResolution": "bundler",
15
+ "moduleResolution": "node",
16
16
  "resolveJsonModule": true,
17
17
  "isolatedModules": true,
18
18
  "jsx": "preserve",
@@ -26,7 +26,8 @@
26
26
  "@/*": [
27
27
  "./*"
28
28
  ]
29
- }
29
+ },
30
+ "baseUrl": "."
30
31
  },
31
32
  "include": [
32
33
  "next-env.d.ts",