- Change package exports from dist/ to src/ (consistent with @multica/store and @multica/ui) - Add private: true since SDK is an internal monorepo package - Switch tsconfig from NodeNext to bundler moduleResolution - Remove .js suffixes from all internal imports for Turbopack compatibility Eliminates the need to build SDK before running dev server or Next.js build. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
458 B
JSON
19 lines
458 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"verbatimModuleSyntax": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|