Files
low-code-react-app-b/packages/spark-tools/tsconfig.json
copilot-swe-agent[bot] 6a80789b62 Create complete source implementation for @github/spark package
- 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>
2026-01-17 08:57:30 +00:00

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"]
}