mirror of
https://github.com/johndoe6345789/low-code-react-app-b.git
synced 2026-04-24 13:44:54 +00:00
- Added full implementations in packages/spark-tools/src/ - Created hooks/index.ts with complete useKV hook implementation - Created lib/spark-runtime.ts with KV storage, LLM, and user services - Created lib/spark.ts for spark runtime initialization - Created sparkVitePlugin.ts for Vite integration - Created vitePhosphorIconProxyPlugin.ts for icon optimization - Added rollup.config.ts for building the package - Added tsconfig.json for TypeScript configuration - Successfully built the package with all exports - All TypeScript compilation errors resolved - Main project build completes successfully Co-authored-by: johndoe6345789 <224850594+johndoe6345789@users.noreply.github.com>
22 lines
544 B
JSON
22 lines
544 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|